/* Base Styles */
:root {
    --primary-bg: #000000;      /* Black background */
    --secondary-bg: #0a0a0a;    /* Dark gray for contrast */
    --text-light: #b8d4ff;      /* Light blue text */
    --text-white: #ffffff;      /* White text */
    --accent-blue: #0066ff;     /* Bright blue accent */
    --accent-gold: #00aaff;     /* Light blue accent for buttons */
    --accent-green: #00cc66;    /* Green for success/confirm actions */
    --warning-red: #ff3333;     /* Red for warnings/errors */
    --card-bg: #111111;         /* Card background */
    --border-color: #222222;    /* Border color for elements */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-bg);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-white);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--primary-bg);
}

.btn-primary:hover {
    background-color: var(--text-white);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-blue);
}

.btn-secondary:hover {
    background-color: rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--secondary-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.logo img,
.footer-logo img {
    width: 100%;
    max-width: 210px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.banner {
    background-color: var(--warning-red);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    position: relative;
    display: inline-block;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    position: relative;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-hero-img {
    transform: scale(1.05);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.about-story, .about-community {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-story h2, .about-community h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.about-values {
    margin: 80px 0;
}

.about-values h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--accent-blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.value-icon {
    display: inline-block;
    margin-right: 10px;
    color: var(--accent-blue);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.about-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 15px;
    margin: 80px 0;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section - New Design */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 170, 255, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-image-box {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    padding: 30px;
    backdrop-filter: blur(5px);
}

.overlay-content {
    text-align: center;
}

.overlay-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.overlay-content h4 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-content-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.about-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.about-intro-box h3 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro-box p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.about-feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.05);
}

.about-feature-box:hover::before {
    opacity: 1;
}

.feature-box-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.about-feature-box h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-feature-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-notice {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-notice p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Philosophy Box Styles */
.about-philosophy-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.about-philosophy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.philosophy-header {
    margin-bottom: 30px;
}

.philosophy-header h3 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-header p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.philosophy-point {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.philosophy-point:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateX(5px);
}

.philosophy-point .point-marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 102, 255, 0.2);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.philosophy-point p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Styles for Philosophy Box */
@media (max-width: 768px) {
    .about-philosophy-box {
        padding: 30px 25px;
    }

    .philosophy-header h3 {
        font-size: 1.5rem;
    }

    .philosophy-header p {
        font-size: 1rem;
    }

    .philosophy-points {
        grid-template-columns: 1fr;
    }

    .philosophy-point {
        padding: 12px;
        gap: 12px;
    }

    .philosophy-point .point-marker {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .philosophy-point p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-philosophy-box {
        padding: 25px 20px;
    }

    .philosophy-header h3 {
        font-size: 1.3rem;
    }

    .philosophy-point {
        flex-direction: column;
        gap: 10px;
    }

    .philosophy-point .point-marker {
        width: 100%;
        height: auto;
        padding: 8px;
        border-radius: 8px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-features, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-main-image {
        min-height: 300px;
    }

    .about-feature-boxes {
        grid-template-columns: 1fr;
    }

    .about-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-text h2, .about-story h2, .about-community h2, .about-values h2 {
        font-size: 2rem;
    }
    
    .about-features, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 40px 20px;
        margin: 60px 0;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-intro-box {
        padding: 25px 20px;
    }

    .about-intro-box h3 {
        font-size: 1.5rem;
    }

    .about-intro-box p {
        font-size: 1rem;
    }

    .about-feature-box {
        padding: 20px 15px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card-icon {
        font-size: 2rem;
    }

    .about-notice {
        padding: 15px 20px;
    }

    .about-notice p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-text h2, .about-story h2, .about-community h2, .about-values h2 {
        font-size: 1.8rem;
    }
    
    .feature-card, .value-item {
        padding: 20px;
    }

    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        gap: 30px;
    }

    .about-feature-boxes {
        gap: 15px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 4rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0a0a1a 100%);
    overflow: hidden;
    color: var(--text-white);
    min-height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 170, 255, 0.08) 0%, transparent 30%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    margin-top: 4rem;
    color: var(--accent-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 15px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.15rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hero-box {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
}

.hero-box:hover::before {
    opacity: 1;
}

.primary-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.secondary-box {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.tertiary-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.box-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-box:hover .box-icon {
    transform: scale(1.15);
}

.hero-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
}

.hero-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.hero-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.hero-box .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-box .btn:hover svg {
    transform: translateX(4px);
}

.hero-info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.info-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-notice {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-notice p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles for Hero Section */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-box:last-child {
        grid-column: 1 / -1;
    }
    
    .hero-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-header {
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .hero-box:last-child {
        grid-column: auto;
    }
    
    .hero-box {
        padding: 30px 20px;
    }
    
    .hero-box p {
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .hero-info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .info-box {
        padding: 20px 15px;
    }
    
    .info-number {
        font-size: 1.8rem;
    }
    
    .info-label {
        font-size: 0.85rem;
    }
    
    .hero-notice {
        padding: 15px 20px;
    }
    
    .hero-notice p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .hero-box h3 {
        font-size: 1.2rem;
    }
    
    .hero-box p {
        font-size: 0.95rem;
    }
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 170, 255, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.game-card-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.game-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.4);
}

.game-card-box:hover::before {
    opacity: 1;
}

.game-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.game-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card-box:hover .game-card-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.game-card-box:hover .game-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.game-card-box:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.overlay-content h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.game-card-content {
    padding: 25px;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.game-card-content .tag {
    background: rgba(0, 102, 255, 0.15);
    color: var(--accent-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.game-card-content h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.3;
}

.game-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px;
    min-height: 45px;
}

.game-card-content .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.game-card-content .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.game-card-content .btn:hover svg {
    transform: translateX(4px);
}

.games-notice {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 18px 30px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-notice p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles for Games Section */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card-box:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .game-card-box:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 80px 0;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .game-card-content {
        padding: 20px;
    }

    .game-card-content h3 {
        font-size: 1.2rem;
    }

    .game-card-content p {
        font-size: 0.9rem;
        min-height: auto;
    }

    .games-notice {
        padding: 15px 20px;
    }

    .games-notice p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .game-card-content h3 {
        font-size: 1.1rem;
    }

    .game-card-content p {
        font-size: 0.85rem;
    }

    .game-card-content .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwIiBoZWlnaHQ9IjUiIGZpbGw9IiMyMjM4NTkiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:last-child {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
    text-align: center;
    padding: 40px;
    margin-bottom: 5rem;
}

.feature-card:last-child .feature-card-content {
    max-width: 700px;
    margin: 0 auto;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 102, 255, 0.25);
}

.feature-icon .icon {
    font-size: 2rem;
    line-height: 1;
}

.feature-content h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-content h3::after {
    width: 60px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.feature-card:last-child h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card:last-child p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline:hover {
    background: rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-card:last-child {
        padding: 30px 20px;
    }
    
    .feature-card:last-child h3 {
        font-size: 1.6rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon .icon {
        font-size: 1.8rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.step h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    border-radius: 4px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-logo-img {
        height: 35px;
        margin: 0 auto;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}



/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .games-grid, .features-grid, .steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-bg);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero, .games-section, .features-section, .how-it-works, .cta-section {
        padding: 100px 0 60px;
    }
}

/* Policy Page Styles */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-header h1 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin: 1.8rem 0 1rem;
}

.policy-section p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.policy-section ul, 
.policy-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Warning Box */
.warning-box {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid var(--warning-red);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
}

.warning-box h3 {
    color: var(--warning-red);
    margin-top: 0;
    font-size: 1.3rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: var(--accent-blue);
    margin-top: 0;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background-color: rgba(100, 255, 218, 0.1);
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 4px 4px 0;
    text-align: center;
}

.cta-box h3 {
    color: var(--accent-blue);
    margin-top: 0;
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Emergency Contact */
.emergency-contact {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid var(--warning-red);
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 4px 4px 0;
}

.emergency-contact h3 {
    color: var(--warning-red);
    margin-top: 0;
}

/* Resources List */
.resources-list {
    margin: 1.5rem 0;
}

.resources-list h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resources-list ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.resources-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.resources-list li:before {
    content: "•";
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-box,
    .cta-box,
    .emergency-contact {
        margin: 1.5rem 0;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.2rem;
    }
}

.policy-section a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.policy-section a:hover {
    color: var(--text-white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .policy-container {
        padding: 1.5rem;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .policy-container {
        padding: 1.2rem;
        margin: 1rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 170, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.disclaimer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.disclaimer-content-box {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.disclaimer-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.disclaimer-header {
    margin-bottom: 35px;
}

.disclaimer-header h2 {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.disclaimer-header p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclaimer-point {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.disclaimer-point:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateX(5px);
}

.point-marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 102, 255, 0.2);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.point-content h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 600;
}

.point-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.disclaimer-image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.age-badge {
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.disclaimer-note {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    max-width: 300px;
}

.disclaimer-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Disclaimer Section */
@media (max-width: 992px) {
    .disclaimer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .disclaimer-image-box {
        order: -1;
    }
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 80px 0;
    }

    .disclaimer-content-box {
        padding: 30px 25px;
    }

    .disclaimer-header h2 {
        font-size: 1.7rem;
    }

    .disclaimer-header p {
        font-size: 0.95rem;
    }

    .disclaimer-point {
        padding: 12px;
        gap: 12px;
    }

    .point-marker {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .point-content h4 {
        font-size: 1rem;
    }

    .point-content p {
        font-size: 0.85rem;
    }

    .age-badge svg {
        width: 160px;
        height: 160px;
    }

    .disclaimer-note {
        padding: 15px 20px;
        max-width: 100%;
    }

    .disclaimer-note p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-content-box {
        padding: 25px 20px;
    }

    .disclaimer-header h2 {
        font-size: 1.5rem;
    }

    .disclaimer-point {
        flex-direction: column;
        gap: 10px;
    }

    .point-marker {
        width: 100%;
        height: auto;
        padding: 8px;
        border-radius: 8px;
    }

    .age-badge svg {
        width: 140px;
        height: 140px;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.03) 0%, transparent 50%);
    opacity: 1;
    z-index: 1;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.last-updated {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
    border-color: var(--accent-blue);
}

.privacy-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-right: 25px;
    min-width: 50px;
    text-align: center;
    padding-top: 5px;
}

.privacy-text {
    flex: 1;
}

.privacy-text h2 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.privacy-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-blue);
}

.privacy-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.privacy-contact h3 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-contact p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.privacy-contact a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-contact a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 60px 0;
    }
    
    .disclaimer-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disclaimer-card {
        padding: 20px;
    }
}
