/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0a0a2a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: rgba(10, 10, 42, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
}

/* Navigation Styles */
.nav {
    position: relative;
}

.burger-toggle {
    display: none;
}

.burger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger-icon span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #4a9eff;
    text-shadow: 0 0 5px rgba(74, 158, 255, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 50%, #0a0a2a 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #4a9eff 0%, #0066ff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #4a9eff;
}

.btn-secondary:hover {
    background: rgba(74, 158, 255, 0.1);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* What is Trading Section */
.what-is-trading {
    background: linear-gradient(180deg, #0a0a2a 0%, #1a1a3a 100%);
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.icon-item {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 158, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    transition: all 0.3s;
}

.icon-item:hover {
    transform: translateY(-5px);
    background: rgba(74, 158, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

.icon-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.icon-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a9eff;
}

.icon-item p {
    color: #ccc;
}

/* Free Materials Section */
.free-materials {
    background: #0a0a2a;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.material-card {
    background: rgba(74, 158, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.2);
    transition: all 0.3s;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
    border-color: rgba(74, 158, 255, 0.5);
}

.material-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.material-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.material-card p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
}

/* Learning Process Section */
.learning-process {
    background: linear-gradient(180deg, #1a1a3a 0%, #0a0a2a 100%);
    position: relative;
}

.learning-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.learning-process .container {
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 158, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(74, 158, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a9eff 0%, #0066ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}

.step img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a9eff;
}

.step p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Registration Form Section */
.registration-form {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    padding: 5rem 0;
}

.registration-form h2 {
    margin-bottom: 1rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(74, 158, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 8px;
    background: rgba(10, 10, 42, 0.8);
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-checkboxes label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.form-checkboxes a {
    color: #4a9eff;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    background: #0a0a2a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(74, 158, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    user-select: none;
}

.faq-question:hover {
    background: rgba(74, 158, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(180deg, #1a1a3a 0%, #0a0a2a 100%);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(74, 158, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.newsletter-form .form-group input {
    width: 100%;
}

/* Footer Styles */
.footer {
    background-color: #0a0a2a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #4a9eff;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    color: #999;
    font-size: 0.85rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
    background: rgba(74, 158, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    max-width: 600px;
}

.thank-you-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4a9eff;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-page p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Courses Page */
.courses-page {
    padding: 4rem 0;
}

.courses-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: rgba(74, 158, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 158, 255, 0.2);
    transition: all 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
    border-color: rgba(74, 158, 255, 0.5);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.course-content p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Course Detail Page */
.course-page {
    padding: 4rem 0;
}

.course-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-image {
    margin-bottom: 2rem;
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.course-text h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #4a9eff;
    background: none;
    -webkit-text-fill-color: #4a9eff;
}

.course-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.course-text ul {
    color: #ccc;
    line-height: 2;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.course-text li {
    margin-bottom: 0.5rem;
}

/* About Page */
.about-page {
    padding: 4rem 0;
}

.about-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-info-box {
    background: rgba(74, 158, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    margin-top: 3rem;
}

.contact-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a9eff;
    background: none;
    -webkit-text-fill-color: #4a9eff;
    text-align: left;
}

.contact-info-box p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
}

.contact-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(74, 158, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a9eff;
    background: none;
    -webkit-text-fill-color: #4a9eff;
    text-align: left;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.contact-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4a9eff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 2rem;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: rgba(74, 158, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a9eff;
    background: none;
    -webkit-text-fill-color: #4a9eff;
    text-align: left;
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
    padding: 4rem 0;
}

.privacy-page h1,
.terms-page h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(74, 158, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #4a9eff;
    background: none;
    -webkit-text-fill-color: #4a9eff;
    text-align: left;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    text-align: left;
}

.privacy-content p,
.terms-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul,
.terms-content ul {
    color: #ccc;
    line-height: 2;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a,
.terms-content a {
    color: #4a9eff;
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo-image {
        width: 36px;
        height: 36px;
    }

    .burger-icon {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 42, 0.98);
        width: 200px;
        padding: 1rem;
        gap: 1rem;
        display: none;
        border: 1px solid rgba(74, 158, 255, 0.2);
        border-radius: 8px;
    }

    .burger-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    section h2 {
        font-size: 2rem;
    }

    .icons-grid,
    .materials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .main-form,
    .newsletter-form,
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .courses-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .courses-list {
        grid-template-columns: 1fr;
    }

    .privacy-content,
    .terms-content {
        padding: 1.5rem;
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .main-form,
    .newsletter-form,
    .contact-form {
        padding: 1.5rem 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-content,
    .contact-wrapper {
        gap: 2rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1rem;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.5rem;
    }

    .thank-you-content {
        padding: 1.5rem 1rem;
    }

    .thank-you-page h1 {
        font-size: 2rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 42, 0.98);
    border-top: 1px solid rgba(74, 158, 255, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ccc;
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #6bb0ff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}
