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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('../images/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Cyberpunk Theme Overrides */
body.cyberpunk-theme {
    background: linear-gradient(to bottom, #0a0e27 0%, #1a1f3a 50%, #0d1129 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
}

body.cyberpunk-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

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

/* Header & Navigation - Light Theme Pages */
header {
    background: rgba(220, 38, 38, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Main - Cyberpunk Theme */
.hero-main {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    z-index: 1;
}

/* Crypto Icons Background */
.crypto-icons {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.crypto-icon {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    color: #00d4ff;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.crypto-icon.bitcoin {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.crypto-icon.ethereum {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.crypto-icon.bitcoin-2 {
    bottom: 25%;
    left: 8%;
    animation-delay: 2s;
}

.crypto-icon.ethereum-2 {
    bottom: 20%;
    right: 12%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Logo */
.hero-logo {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
    }
}

.tagline {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* CPA Info Section */
.cpa-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    z-index: 10;
    flex-wrap: wrap;
}

.cpa-amount {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff 0%, #b968ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
    animation: glow 2s ease-in-out infinite;
    font-style: italic;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(185, 104, 255, 0.8));
    }
}

.cpa-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.cpa-label span {
    display: block;
    font-size: 1.5rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* 3D Carousel Container */
.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 40px 0;
    perspective: 2000px;
    z-index: 10;
}

.carousel-platform {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.3),
        inset 0 0 50px rgba(0, 212, 255, 0.1);
    animation: rotate 20s linear infinite, platformPulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes platformPulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(0, 212, 255, 0.3),
            inset 0 0 50px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(0, 212, 255, 0.5),
            inset 0 0 80px rgba(0, 212, 255, 0.2);
    }
}

/* 3D Carousel */
.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d-item {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.4));
}

.carousel-3d-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Position items in a row */
.carousel-3d-item:nth-child(1) {
    left: 5%;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    opacity: 0.5;
    z-index: 1;
}

.carousel-3d-item:nth-child(2) {
    left: 20%;
    top: 50%;
    transform: translateY(-50%) scale(0.75);
    opacity: 0.7;
    z-index: 2;
}

.carousel-3d-item:nth-child(3) {
    /* Center item */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 10;
    width: 280px;
}

.carousel-3d-item:nth-child(4) {
    right: 20%;
    top: 50%;
    transform: translateY(-50%) scale(0.75);
    opacity: 0.7;
    z-index: 2;
}

.carousel-3d-item:nth-child(5) {
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    opacity: 0.5;
    z-index: 1;
}

.carousel-3d-item.hidden {
    display: none;
}

/* Center item specific styling */
.carousel-3d-item.center {
    filter: drop-shadow(0 20px 50px rgba(185, 104, 255, 0.6));
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% {
        filter: drop-shadow(0 20px 50px rgba(185, 104, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 20px 70px rgba(0, 212, 255, 0.8));
    }
}

.center-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00d4ff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    white-space: nowrap;
}

/* Carousel Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.carousel-arrow:hover {
    background: rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.left-arrow {
    left: -80px;
}

.right-arrow {
    right: -80px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    transform: scale(1.3);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 30px;
    margin: 40px 0 30px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}

.cyber-btn {
    padding: 14px 35px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn:hover {
    border-color: #00d4ff;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Country Flags */
.country-flags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    z-index: 10;
}

.flag {
    font-size: 28px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: grayscale(50%);
}

.flag:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: grayscale(0%);
}

/* ===== CYBERPUNK NAVIGATION ===== */
.cyber-nav {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.cyber-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.cyber-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.cyber-nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.cyber-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #b968ff);
    transition: width 0.3s ease;
}

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

.cyber-nav-links a:hover,
.cyber-nav-links a.active {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ===== CYBERPUNK PAGE STYLES ===== */
.cyber-main {
    position: relative;
    min-height: 100vh;
    padding: 60px 20px;
    z-index: 1;
}

.cyber-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.cyber-page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff 0%, #b968ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
}

.cyber-page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* ===== CYBERPUNK CONTACT SECTION ===== */
.cyber-contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.cyber-contact-info {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.cyber-contact-info h2 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cyber-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cyber-contact-details {
    margin-top: 40px;
}

.cyber-contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid #00d4ff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cyber-contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.cyber-contact-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cyber-contact-item p {
    color: #00d4ff;
    margin: 0;
    font-weight: 500;
}

/* ===== CYBERPUNK FORM STYLES ===== */
.cyber-form-container {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(185, 104, 255, 0.3);
    box-shadow: 0 0 30px rgba(185, 104, 255, 0.2);
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cyber-form-group {
    display: flex;
    flex-direction: column;
}

.cyber-form-group label {
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-form-group input,
.cyber-form-group textarea {
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #fff;
    transition: all 0.3s ease;
}

.cyber-form-group input::placeholder,
.cyber-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cyber-form-group input:focus,
.cyber-form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.cyber-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cyber-form-group input.error,
.cyber-form-group textarea.error {
    border-color: #ff0055;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.error-message {
    color: #ff0055;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #b968ff 100%);
    border: none;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.submit-btn:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.success-message {
    background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
    color: white;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    animation: slideDown 0.3s ease;
}

/* ===== CYBERPUNK FLAVOURS SECTION ===== */
.cyber-flavours-section {
    padding: 0 20px 60px;
}

.cyber-flavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-flavour-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.cyber-flavour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(185, 104, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cyber-flavour-card:hover::before {
    opacity: 1;
}

.cyber-flavour-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.4),
        0 10px 40px rgba(185, 104, 255, 0.3);
}

.cyber-flavour-image {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(185, 104, 255, 0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    z-index: 2;
}

.cyber-flavour-image img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.4));
    transition: all 0.4s ease;
}

.cyber-flavour-card:hover .cyber-flavour-image img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(185, 104, 255, 0.6));
}

.cyber-flavour-info {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.cyber-flavour-info h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b968ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cyber-flavour-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== CYBERPUNK TERMS SECTION ===== */
.cyber-terms-section {
    max-width: 1100px;
    margin: 0 auto;
}

.cyber-terms-content {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.cyber-terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.cyber-terms-header h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #b968ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cyber-terms-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 5px 0;
}

.cyber-terms-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(185, 104, 255, 0.1);
    border: 2px solid rgba(185, 104, 255, 0.3);
    border-radius: 8px;
}

.cyber-terms-intro p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 15px;
    margin: 10px 0;
}

.cyber-terms-block {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cyber-terms-block:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.cyber-terms-block h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.cyber-terms-block h3 {
    color: #b968ff;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(185, 104, 255, 0.5);
}

.cyber-terms-block p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 12px;
}

.cyber-terms-block ul {
    margin: 15px 0 15px 25px;
    list-style-type: disc;
}

.cyber-terms-block ul li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 8px;
}

.cyber-terms-block strong {
    color: #00d4ff;
    font-weight: 600;
}

.cyber-terms-block a {
    color: #b968ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cyber-terms-block a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.cyber-terms-footer {
    margin-top: 50px;
    padding: 30px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
}

.cyber-terms-footer h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.cyber-terms-footer p {
    color: rgba(255, 255, 255, 0.85);
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.8;
}

.cyber-terms-footer strong {
    color: #00d4ff;
}

/* ===== LIGHT THEME STYLES FOR OTHER PAGES ===== */

/* Add a semi-transparent overlay for better readability */
body:not(.cyberpunk-theme)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Hero Section - Light Theme */
.hero {
    padding: 60px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #dc2626;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Light Theme */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.9);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Page Header */
.page-header {
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Flavours Grid */
.flavours-section {
    padding: 40px 20px 80px;
}

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

.flavour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.flavour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.flavour-image {
    padding: 30px;
    background: linear-gradient(135deg, #fef3f3 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.flavour-image img {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.flavour-card:hover .flavour-image img {
    transform: scale(1.05) rotate(5deg);
}

.flavour-info {
    padding: 25px;
    text-align: center;
}

.flavour-info h3 {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 10px;
}

.flavour-info p {
    color: #666;
    line-height: 1.6;
}

/* Terms Section */
.terms-section {
    padding: 40px 20px 80px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.terms-block {
    margin-bottom: 35px;
}

.terms-block h2 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.terms-block p {
    color: #555;
    line-height: 1.8;
}

.terms-block a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.terms-block a:hover {
    text-decoration: underline;
}

.terms-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

.terms-footer p {
    color: #666;
    margin: 5px 0;
}

/* Contact Section */
.contact-section {
    padding: 40px 20px 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease;
}

.success-message.show {
    display: block;
}

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

/* Footer */
footer {
    background: rgba(220, 38, 38, 0.95);
    color: white;
    padding: 30px 0;
    margin-top: auto;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-3d-item:nth-child(1),
    .carousel-3d-item:nth-child(5) {
        display: none;
    }

    .carousel-3d-item:nth-child(2) {
        left: 10%;
    }

    .carousel-3d-item:nth-child(4) {
        right: 10%;
    }

    .left-arrow {
        left: -60px;
    }

    .right-arrow {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .logo img {
        height: 50px;
    }

    .hero-logo img {
        height: 80px;
    }

    .tagline {
        font-size: 14px;
    }

    .cpa-amount {
        font-size: 2.5rem;
    }

    .cpa-info {
        gap: 20px;
    }

    .cpa-label {
        font-size: 1rem;
    }

    .cpa-label span {
        font-size: 1.2rem;
    }

    .carousel-3d-container {
        height: 400px;
    }

    .carousel-3d-item:nth-child(2),
    .carousel-3d-item:nth-child(4) {
        display: none;
    }

    .carousel-3d-item:nth-child(3) {
        width: 220px;
    }

    .carousel-platform {
        width: 400px;
        height: 400px;
    }

    .action-buttons {
        gap: 15px;
    }

    .cyber-btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    .country-flags {
        gap: 10px;
    }

    .flag {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .flavours-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cyber-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cyber-nav-links {
        gap: 15px;
    }

    .cyber-nav-links a {
        font-size: 13px;
        padding: 6px 12px;
    }

    .cyber-page-header h1 {
        font-size: 2.5rem;
    }

    .cyber-page-header p {
        font-size: 1.1rem;
    }

    .terms-content {
        padding: 30px 20px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 60px;
    }

    .cpa-amount {
        font-size: 2rem;
    }

    .carousel-3d-container {
        height: 350px;
    }

    .carousel-3d-item:nth-child(3) {
        width: 180px;
    }

    .carousel-platform {
        width: 300px;
        height: 300px;
    }

    .left-arrow {
        left: -20px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .right-arrow {
        right: -20px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .cyber-btn {
        width: 100%;
        text-align: center;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .cyber-nav-container {
        flex-direction: column;
        padding: 10px;
    }

    .cyber-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-logo img {
        height: 50px;
    }

    .cyber-page-header h1 {
        font-size: 2rem;
    }

    .cyber-contact-info,
    .cyber-form-container {
        padding: 25px;
    }

    .cyber-terms-content {
        padding: 30px 20px;
    }

    .cyber-terms-block {
        padding: 20px;
    }

    .cyber-flavours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cyber-flavour-image {
        min-height: 250px;
        padding: 30px;
    }

    .cyber-flavour-image img {
        width: 60%;
    }

    .cyber-flavour-info {
        padding: 25px;
    }

    .cyber-flavour-info h3 {
        font-size: 1.5rem;
    }
}
