/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav a:hover {
    color: #2c5aa0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    background-color: #2c5aa0;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.cta-button:hover {
    background-color: #234a82;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.hero-note {
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-note i {
    color: #2c5aa0;
    margin-right: 0.5rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* About Section */
.about {
    background-color: #ffffff;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.important-notice {
    margin: 3rem 0;
}

.notice-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border-left: 5px solid #ff9800;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.notice-card i {
    font-size: 2rem;
    color: #ff9800;
    display: block;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.notice-card p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.feature-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Fantasy Sports and Rummy Sections */
.fantasy-sports {
    background-color: #f8f9fa;
}

.rummy {
    background-color: #ffffff;
}

.content-box {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid #e8eef5;
    transition: all 0.3s;
}

.fantasy-sports .step-card {
    background: #ffffff;
}

.rummy .step-card {
    background: #f8f9fa;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
}

.step-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.skill-factors {
    background: linear-gradient(135deg, #e8eef5 0%, #f5f7fa 100%);
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.skill-factors h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.skill-factors ul {
    list-style: none;
}

.skill-factors li {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.skill-factors li i {
    color: #2c5aa0;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: #f8f9fa;
}

.responsible-content {
    max-width: 1100px;
    margin: 0 auto;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.responsible-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.responsible-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.responsible-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.responsible-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.responsible-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    background-color: #ffffff;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid #2c5aa0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.disclaimer-box i {
    font-size: 3rem;
    color: #2c5aa0;
    flex-shrink: 0;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-text {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-points {
    margin-top: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.legal-points h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.legal-points ul {
    list-style: none;
}

.legal-points li {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.legal-points li i {
    color: #2c5aa0;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-tagline {
    margin-top: 1rem;
    font-weight: 600;
    color: #2c5aa0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-info li i {
    color: #2c5aa0;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #777;
    max-width: 800px;
    margin: 1rem auto 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-box {
        flex-direction: column;
        padding: 2rem;
    }

    .disclaimer-box i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
