/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

ul, ol {
    list-style-position: inside;
    padding-left: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
    color:#fff;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    h4 {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--neutral-100);
    box-shadow: 0 4px 6px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    color: var(--neutral-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    box-shadow: 0 4px 6px rgba(10, 30, 60, 0.3);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--neutral-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(10, 30, 60, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

.desktop-menu {
    display: none;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--neutral-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sun-icon, .moon-icon {
    position: absolute;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.dark-theme .sun-icon, .moon-icon {
    opacity: 0;
    transform: scale(0.5);
}

.dark-theme .moon-icon, .sun-icon {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neutral-100);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition-normal);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: var(--neutral-100);
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu a:hover {
    color: var(--accent-light);
}

@media (min-width: 992px) {
    .desktop-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        padding: 0;
    }
    
    .desktop-menu a {
        color: var(--neutral-100);
        font-weight: 500;
        position: relative;
    }
    
    .desktop-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width var(--transition-fast);
    }
    
    .desktop-menu a:hover::after {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
}

.hero-image {
    display: none;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-section .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        display: block;
        flex: 1;
        position: relative;
    }
    
    .hero-image img {
        border-radius: var(--border-radius-lg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.games-tabs {
    margin: 2rem 0;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    background-color: rgba(76, 201, 240, 0.1);
}

.tab-btn.active {
    background-color: var(--accent-color);
    color: var(--neutral-100);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.game-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-image {
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-card h3 {
    padding: 1rem 1rem 0.5rem;
}

.game-card p {
    padding: 0 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.game-card .btn {
    margin: 1rem;
}

.section-footer {
    margin-top: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.security-section h2,
.security-section h3 {
    color: var(--neutral-100);
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.security-feature {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: transform var(--transition-fast);
}

.security-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.security-certificates {
    margin-top: 4rem;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.certificate {
    text-align: center;
    max-width: 150px;
}

.certificate img {
    margin: 0 auto 1rem;
    transition: transform var(--transition-fast);
}

.certificate:hover img {
    transform: scale(1.1);
}

.certificate p {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .security-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Payments Section */
.payments-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.payment-methods-tabs {
    margin: 2rem 0;
}

.payment-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.payment-table th,
.payment-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.payment-table th {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}

.payment-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.03);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-payments {
    margin-top: 3rem;
}

.crypto-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.crypto-feature {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.crypto-feature svg {
    margin: 0 auto 1rem;
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .crypto-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--neutral-100);
}

.bonuses-section h2,
.bonuses-section h3 {
    color: var(--neutral-100);
}

.bonuses-carousel {
    margin: 3rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.bonus-card {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.bonus-header {
    background-color: var(--primary-color);
    color: var(--neutral-100);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-header h3 {
    color: var(--neutral-100);
    margin: 0;
}

.countdown {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: monospace;
}

.bonus-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.bonus-terms {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.bonus-terms li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bonus-footer {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.03);
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.carousel-prev,
.carousel-next {
    background: none;
    border: none;
    color: var(--neutral-100);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active,
.dot:hover {
    background-color: var(--neutral-100);
}

.loyalty-program {
    margin-top: 4rem;
}

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

.loyalty-level {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-fast);
}

.loyalty-level:hover {
    transform: translateY(-5px);
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.level-icon.bronze {
    background-color: #cd7f32;
    color: var(--neutral-100);
}

.level-icon.silver {
    background-color: #c0c0c0;
    color: var(--neutral-900);
}

.level-icon.gold {
    background-color: #ffd700;
    color: var(--neutral-900);
}

.level-icon.platinum {
    background-color: #e5e4e2;
    color: var(--neutral-900);
}

.level-icon.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #a3edff 100%);
    color: var(--neutral-900);
}

.loyalty-level ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.loyalty-level li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.loyalty-level li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

@media (min-width: 768px) {
    .bonus-content {
        flex-direction: row;
    }
    
    .bonus-image {
        flex: 1;
    }
    
    .bonus-details {
        flex: 2;
    }
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-color);
}

.accordion-icon {
    transition: transform var(--transition-fast);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-fast);
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
}

.chat-button {
    animation: pulse 2s infinite;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-color);
    position: absolute;
}

.testimonial-content p::before {
    left: 0;
    top: -0.5rem;
}

.testimonial-content p::after {
    right: 0;
    bottom: -1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 700;
}

.stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .support-content {
        grid-template-columns: 3fr 2fr;
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Section */
.mobile-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--neutral-100);
}

.mobile-section h2,
.mobile-section h3 {
    color: var(--neutral-100);
}

.devices-showcase {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.device-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.device {
    position: relative;
}

.device-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.smartphone .device-frame {
    width: 240px;
    height: 480px;
    border: 10px solid var(--neutral-800);
}

.tablet .device-frame {
    width: 400px;
    height: 300px;
    border: 15px solid var(--neutral-800);
}

.laptop .device-frame {
    width: 480px;
    height: 300px;
    border: 20px solid var(--neutral-800);
    border-bottom: 30px solid var(--neutral-800);
}

.mobile-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin: 0 auto 1.5rem;
    color: var(--accent-light);
}

.mobile-stats {
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.mobile-testimonials {
    margin-top: 4rem;
}

.testimonials-slider {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

@media (min-width: 768px) {
    .devices-showcase {
        flex-direction: row;
    }
    
    .device-mockups {
        flex: 1;
    }
    
    .mobile-features {
        flex: 1;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--neutral-300);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 400px;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav-column h4 {
    color: var(--neutral-100);
    margin-bottom: 1.5rem;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
}

.footer-nav-column li {
    margin-bottom: 0.75rem;
}

.footer-nav-column a {
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

.footer-nav-column a:hover {
    color: var(--accent-light);
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-certificates h4,
.footer-payment-methods h4,
.footer-newsletter h4 {
    color: var(--neutral-100);
    margin-bottom: 1.5rem;
}

.certificates-list,
.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--neutral-100);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--neutral-100);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--neutral-400);
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* Modal */
.privacy-modal,
.terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.privacy-content,
.terms-content {
    margin-top: 2rem;
}

.privacy-modal.active,
.terms-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
    }
    
    .footer-logo {
        flex: 1;
    }
    
    .footer-nav {
        flex: 2;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-middle {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideInUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes slideInDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}