/* Base styles with futuristic theme */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #CFB53B;
    --gold-light: #F5E9C1;
    --gold-dark: #9C7C38;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2D35B 50%, #D4AF37 100%);
    --dark: #111111;
    --dark-secondary: #222222;
    --white: #FFFFFF;
    --accent: #00C2FF;
    --accent-dark: #0088CC;
    --success: #00E676;
    --error: #FF3D00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark) 0%, var(--dark-secondary) 100%);
    background-attachment: fixed;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation span {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: move 8s linear infinite;
}

@keyframes move {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(3);
        opacity: 0;
    }
}

/* Container with glass morphism */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header with animated logo */
header {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    perspective: 1000px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0);
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: translateY(-15px) rotateY(10deg);
        filter: drop-shadow(0 25px 15px rgba(212, 175, 55, 0.2));
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Main content with glass morphism panels */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.glass-panel {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: 0.5s;
}

.glass-panel:hover::before {
    left: 100%;
}

.panel-border {
    position: absolute;
    background: var(--gold-primary);
}

.border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.border-right {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s 0.25s;
}

.border-bottom {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s 0.5s;
}

.border-left {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s 0.75s;
}

.glass-panel:hover .border-top,
.glass-panel:hover .border-right,
.glass-panel:hover .border-bottom,
.glass-panel:hover .border-left {
    transform: scale(1);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: 'COMING SOON';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.tagline::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}

/* Advanced countdown timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.countdown-item {
    background: var(--dark-secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.countdown-item:hover {
    transform: translateZ(10px);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    z-index: 1;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.countdown-item:hover::after {
    opacity: 1;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    color: var(--gold-light);
    font-weight: 300;
}

/* Newsletter form with advanced styling */
.newsletter {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--gold-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.form-group {
    display: flex;
    margin-bottom: 10px;
    position: relative;
}

.form-control {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(17, 17, 17, 0.7);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.btn {
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    padding: 16px 30px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 20px;
    transition: all 0.3s;
}

.success-message {
    color: var(--success);
    animation: fadeIn 0.5s;
}

.error-message {
    color: var(--error);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social media with hover effects */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.5s;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon:hover::before {
    transform: scale(1);
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 300;
}

/* Footer with futuristic design */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--white);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    position: relative;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Chat widget container with animation */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button i {
    font-size: 1.5rem;
    color: var(--dark);
}

.chat-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Notification system */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold-primary);
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    transform: translateX(120%);
    transition: transform 0.5s;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.notification-close {
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    transition: color 0.3s;
}

.notification-close:hover {
    color: var(--white);
}

/* Loading indicator */
.loading {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.loading div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--gold-primary) transparent transparent transparent;
}

.loading div:nth-child(1) {
    animation-delay: -0.45s;
}

.loading div:nth-child(2) {
    animation-delay: -0.3s;
}

.loading div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Cursor effect */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    display: none;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: 0.1s;
    display: none;
}

/* Responsive design */
@media (min-width: 1024px) {
    .cursor, .cursor-follower {
        display: block;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-control {
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .btn {
        border-radius: 8px;
        width: 100%;
        margin-left: 0;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .glass-panel {
        padding: 30px 20px;
    }
}