/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header and Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)); }
}

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
}

.cyber {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.rabbit {
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

.tagline {
    margin-bottom: 40px;
}

.tagline p {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Main Content */
.content {
    padding: 60px 0;
}

.coming-soon {
    text-align: center;
    margin-bottom: 80px;
}

.coming-soon h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.ninja-message {
    max-width: 800px;
    margin: 0 auto 60px;
}

.ninja-message p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.feature h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 40px 0;
}

.contact h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.email-instruction {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-direct {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 30px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.email-link:hover {
    color: #000;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

.email-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .email-signup {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature {
        padding: 30px 20px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00e6e6, #0066cc);
}

/* Hidden Easter Egg Rabbit */
.secret-rabbit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
    z-index: 1000;
    user-select: none;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    animation: secretFloat 4s ease-in-out infinite;
}

.secret-rabbit:hover {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}

.secret-rabbit:active {
    transform: scale(0.8);
}

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

.secret-rabbit.revealed {
    opacity: 1;
    transform: scale(2) rotate(360deg);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 1));
}

.secret-rabbit.ninja-mode {
    animation: ninjaDash 0.5s ease-in-out infinite;
}

@keyframes ninjaDash {
    0%, 100% { transform: translateX(0px) scale(1); }
    25% { transform: translateX(-10px) scale(1.1); }
    50% { transform: translateX(0px) scale(1.2); }
    75% { transform: translateX(10px) scale(1.1); }
}
