/* Lucky 777 Gaming Platform Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FBF0B2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #D8B4F8 0%, #FFC7EA 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}


/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(0,0,0,0.1);
    color: #000000;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #D8B4F8, #FFC7EA);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216,180,248,0.4);
    background: linear-gradient(135deg, #FFC7EA, #D8B4F8);
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-outline:hover {
    background: #000000;
    color: #FBF0B2;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Show mobile menu toggle on tablet and mobile */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #CAEDFF 0%, #FBF0B2 100%);
    color: #000000;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 2rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #D8B4F8, #FFC7EA);
    margin: 1rem auto;
}

/* About Platform Section */
.about-platform {
    padding: 4rem 0;
    background: #CAEDFF;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #FBF0B2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #FFC7EA;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #D8B4F8;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.feature-card h3 {
    color: #000000;
    margin-bottom: 1rem;
}

/* Registration Process Section */
.registration-process {
    padding: 4rem 0;
    background: #CAEDFF;
}

.process-content h3 {
    color: #000000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.process-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Advantages & Security Section */
.advantages-security {
    padding: 4rem 0;
    background: #FBF0B2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: #D8B4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-item h3 {
    color: #000000;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #CAEDFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFC7EA;
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #D8B4F8;
}

.faq-item h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #FBF0B2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #D8B4F8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0,0,0,0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #FFC7EA;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.author-info h4 {
    color: #000000;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: rgba(0,0,0,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: #FFC7EA;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #D8B4F8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Register Section */
.register-section {
    padding: 4rem 0;
    background: #FBF0B2;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.register-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.register-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    color: #000000;
}

.register-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000000;
}

.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #CAEDFF;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #D8B4F8;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FBF0B2;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #000000;
}

.register-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: #000000;
}

.register-note a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.register-note a:hover {
    color: #D8B4F8;
}

.register-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.phone-mockup {
    padding: 8px;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.phone-image {
    width: 400px;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Login Section */
.login-section {
    padding: 4rem 0;
    background: #CAEDFF;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.login-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    color: #000000;
}

.login-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000000;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}

.login-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: #000000;
}

.login-note a {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.login-note a:hover {
    color: #D8B4F8;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-visual .phone-mockup {
    padding: 8px;
    transition: transform 0.3s ease;
}

.login-visual .phone-mockup:hover {
    transform: scale(1.05);
}

.login-visual .phone-image {
    width: 400px;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #D8B4F8 0%, #FFC7EA 100%);
    color: #000000;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #D8B4F8 0%, #FFC7EA 100%);
    color: #000000;
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 3rem 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background: #FBF0B2;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background: #FFC7EA;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.commitment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

/* Privacy Content */
.privacy-content {
    padding: 3rem 0;
}

.privacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

/* Terms Content */
.terms-content {
    padding: 3rem 0;
}

.terms-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-text li {
    margin-bottom: 0.5rem;
}

/* Disclaimer Content */
.disclaimer-content {
    padding: 3rem 0;
}

.disclaimer-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.disclaimer-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.disclaimer-text li {
    margin-bottom: 0.5rem;
}

/* Support Content */
.support-content {
    padding: 3rem 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-method {
    background: #D8B4F8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.support-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.contact-info {
    background: #CAEDFF;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    padding: 0.5rem 0;
}

.faq-section {
    margin-top: 3rem;
}

/* Error Section */
.error-section {
    padding: 4rem 0;
    text-align: center;
    background: #CAEDFF;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-image {
    margin-bottom: 2rem;
}

.error-img {
    max-width: 300px;
    height: auto;
}

.error-title {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.helpful-links {
    margin-bottom: 2rem;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    list-style: none;
    margin-top: 1rem;
}

.link-list li a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #D8B4F8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.link-list li a:hover {
    background: #D8B4F8;
    color: #000000;
}

.search-suggestion {
    background: #FBF0B2;
    padding: 2rem;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #D8B4F8 0%, #FFC7EA 100%);
    color: #000000;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #000000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #000000;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(0,0,0,0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #D8B4F8;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .support-methods {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }


    /* Register and Login sections responsive */
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }

    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }

    .step-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .phone-image {
        width: 150px;
    }

    .login-visual .phone-image {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 5px;
        left: 15px;
    }

    /* Additional mobile adjustments for register/login */
    .register-content h2,
    .login-content h2 {
        font-size: 1.8rem;
    }

    .register-content h3,
    .login-content h3 {
        font-size: 1.3rem;
    }

    .step-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.5rem auto;
    }

    .phone-image {
        width: 120px;
    }

    .login-visual .phone-image {
        width: 150px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #D8B4F8;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-actions,
    .cta-actions,
    .error-actions {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .main-content {
        margin: 0;
        padding: 0;
    }
}
