/* Base styles and variables */
:root {
    --neon-blue: #00f3ff;
    --neon-blue-dark: #0088cc;
    --neon-blue-light: #66ffff;
    --dark-red: #8B0000;
    --dark-red-light: #b30000;
    --dark-bg: #0a0a14;
    --darker-bg: #05050a;
    --darkest-bg: #030308;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --particle-blue: rgba(0, 243, 255, 0.6);
    --particle-red: rgba(139, 0, 0, 0.6);
}

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

/* Custom properties for animations */
@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 243, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 20%);
    animation: backgroundPulse 4s infinite alternate;
}

.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(0, 243, 255, 0.1), 
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    opacity: 0.2;
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.8);
    border-radius: 15px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.loader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--neon-blue), var(--dark-red)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.loader h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--neon-blue), #ffffff, var(--dark-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
}

.loader h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(0, 243, 255, 0.3);
    border-top: 5px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-top-color: var(--neon-blue-light);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid transparent;
    border-top-color: var(--dark-red-light);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-blue), #00aaff);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.1) 2px,
        rgba(255, 255, 255, 0.1) 4px
    );
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader p {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--neon-blue);
    letter-spacing: 2px;
    margin-top: 1rem;
}

.loader .percentage {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    display: inline-block;
    animation: pulseText 1s infinite alternate;
}

@keyframes pulseText {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced background with multiple layers */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
    animation: backgroundShift 30s infinite alternate;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 243, 255, 0.05) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(139, 0, 0, 0.05) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes backgroundShift {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--particle-blue), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--particle-red), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--particle-blue), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--particle-red), transparent),
        radial-gradient(2px 2px at 40px 80px, var(--particle-blue), transparent),
        radial-gradient(1px 1px at 110px 30px, var(--particle-red), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles 15s linear infinite;
    opacity: 0.6;
}

@keyframes particles {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.silhouettes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.silhouette {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.armor {
    width: 200px;
    height: 300px;
    top: 20%;
    right: 10%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><path d="M50 10 L70 30 L70 80 L50 100 L30 80 L30 30 Z" fill="white"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.sword {
    width: 150px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 100"><rect x="9" y="0" width="2" height="80" fill="white"/><path d="M5 80 L15 80 L12 95 L8 95 Z" fill="white"/></svg>');
    animation: float 10s ease-in-out infinite 1s;
}

.dragon {
    width: 300px;
    height: 200px;
    bottom: 20%;
    right: 20%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M20 50 Q50 20 80 50 Q110 80 140 50 Q170 20 180 50 L180 60 Q170 90 140 60 Q110 30 80 60 Q50 90 20 60 Z" fill="white"/><circle cx="40" cy="45" r="3" fill="white"/></svg>');
    animation: float 12s ease-in-out infinite 2s;
}

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

/* Main container with enhanced styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 20%);
    border-radius: 20px;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.1);
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(0, 243, 255, 0.1), 
        transparent, 
        rgba(139, 0, 0, 0.1), 
        transparent);
    z-index: -1;
    animation: borderAnimation 10s linear infinite;
}

.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 243, 255, 0.05) 50%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(139, 0, 0, 0.05) 50%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

@keyframes borderAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo section with enhanced effects */
.logo-section {
    margin-bottom: 3rem;
    position: relative;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.logo-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: conic-gradient(
        transparent, 
        rgba(0, 243, 255, 0.1), 
        transparent 30%
    );
    border-radius: 50%;
    z-index: -2;
    animation: rotate 15s linear infinite;
    opacity: 0.3;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--neon-blue), #ffffff, var(--dark-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.logo::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--neon-blue), #ffffff, var(--dark-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
}

.logo::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--neon-blue), var(--dark-red));
    z-index: -2;
    border-radius: 10px;
    animation: borderGlow 3s ease-in-out infinite alternate;
    opacity: 0.5;
}

@keyframes borderGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes glow {
    from { 
        text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); 
    }
    to { 
        text-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--neon-blue); 
    }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    z-index: 2;
    animation: subtitleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); }
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-blue);
}

.subtitle::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue-light), transparent);
}

/* Countdown section with enhanced styling */
.countdown-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 243, 255, 0.05) 50%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(139, 0, 0, 0.05) 50%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.countdown-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--neon-blue), var(--dark-red)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}

.countdown-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.countdown-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 243, 255, 0.1) 50%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    opacity: 0.3;
    z-index: -1;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    border-color: var(--neon-blue-light);
}

.countdown-item span {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.countdown-item span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.countdown-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Security badges with enhanced styling */
.security-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--dark-red);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(139, 0, 0, 0.1) 50%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    opacity: 0.3;
    z-index: -1;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
    border-color: var(--dark-red-light);
}

.badge i {
    color: var(--dark-red);
    font-size: 1.5rem;
    text-shadow: 0 0 5px var(--dark-red);
    position: relative;
    z-index: 2;
}

.badge span {
    font-size: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Action buttons with enhanced styling */
.actions-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.8s;
    z-index: -1;
}

.discord-btn {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: white;
    animation: pulse 2s infinite;
}

.discord-btn::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
}

.discord-btn::after {
    background: rgba(255, 255, 255, 0.4);
}

.email-btn {
    background: linear-gradient(45deg, var(--dark-bg), #33334d);
    color: var(--text-light);
    border: 1px solid var(--neon-blue);
}

.email-btn::before {
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), transparent);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.btn:hover::after {
    left: 140%;
}

.btn:hover::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
}

.btn:active {
    transform: translateY(1px);
}

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

/* Domain display with enhanced styling */
.domain-display {
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.domain-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.domain-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.domain-display p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    letter-spacing: 2px;
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.domain-display p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: blink 1s infinite;
}

.domain-display p::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: blink 1s infinite 0.5s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Footer with enhanced styling */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(5, 5, 10, 0.8);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 243, 255, 0.02) 50%, transparent 70%),
        linear-gradient(135deg, transparent 30%, rgba(139, 0, 0, 0.02) 50%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.footer p {
    color: var(--text-gray);
    font-size: 1rem;
    position: relative;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .security-section {
        gap: 1rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .actions-section {
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .countdown-item p {
        font-size: 0.8rem;
    }
    
    .security-section {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 80%;
        justify-content: center;
    }
    
    .actions-section {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        justify-content: center;
    }
    
    .domain-display p {
        font-size: 1.2rem;
    }
}