/* KITTBIT Busters Coming Soon - Modern Styles */

/* 
 * Burbank Big Condensed font integration
 * Note: In production, you would load the actual font files
 * For now, we'll rely on the fallback font stack
 */

/* Brand Colors */
:root {
    --busters-primary: #25a9e0;
    --busters-secondary: #989898;
    --busters-white: #ffffff;
    --busters-dark: #1a1a1a;
    --busters-gradient: linear-gradient(135deg, #25a9e0 0%, #989898 100%);
    --shadow-soft: 0 10px 30px rgba(37, 169, 224, 0.1);
    --shadow-hover: 0 20px 40px rgba(37, 169, 224, 0.2);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.kittbit-coming-soon {
    font-family: 'Hanson', 'Arial', sans-serif;
    background: var(--busters-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.kittbit-coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

/* Main container */
.kittbit-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.kittbit-logo {
    margin-bottom: 30px;
    animation: bounceIn 1.2s ease-out 0.3s both;
}

.kittbit-logo img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.kittbit-logo img:hover {
    transform: scale(1.05);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main heading */
.kittbit-heading {
    font-family: 'Burbank Big Condensed', 'Impact', 'Arial Black', 'Arial Narrow', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--busters-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.kittbit-subtitle {
    font-size: 1.3rem;
    color: var(--busters-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content sections */
.kittbit-content {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.kittbit-content p {
    font-size: 1.1rem;
    color: var(--busters-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Social links */
.kittbit-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    animation: fadeIn 1s ease-out 1.5s both;
}

.kittbit-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--busters-gradient);
    border-radius: 50%;
    color: var(--busters-white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.kittbit-social a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.kittbit-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    animation: fadeIn 1s ease-out 1.8s both;
}

.kittbit-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--busters-gradient);
    color: var(--busters-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
}

.kittbit-btn img {
    width: 100%;
}

.kittbit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--busters-white);
}

.kittbit-btn:active {
    transform: translateY(0);
}

/* Map container */
.kittbit-map {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    animation: fadeIn 1s ease-out 2.1s both;
}

.kittbit-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Countdown (if launch date is set) */
.kittbit-countdown {
    margin: 30px 0;
    animation: fadeIn 1s ease-out 2.4s both;
}

.kittbit-countdown-title {
    font-size: 1.2rem;
    color: var(--busters-secondary);
    margin-bottom: 15px;
}

.kittbit-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.kittbit-countdown-item {
    background: var(--busters-gradient);
    color: var(--busters-white);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: var(--shadow-soft);
}

.kittbit-countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Burbank Big Condensed', 'Impact', sans-serif;
}

.kittbit-countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Loading animation */
.kittbit-loader {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(37, 169, 224, 0.3);
    border-top: 3px solid var(--busters-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .kittbit-container {
        padding: 40px 20px;
        margin: 40px 20px;
    }
    
    .kittbit-heading {
        font-size: 2.4rem;
    }
    
    .kittbit-subtitle {
        font-size: 1.1rem;
    }
    
    .kittbit-content p {
        font-size: 1rem;
    }
    
    .kittbit-social {
        gap: 15px;
    }
    
    .kittbit-social a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .kittbit-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .kittbit-btn {
        width: 200px;
    }
    
    .kittbit-countdown-timer {
        gap: 15px;
    }
    
    .kittbit-countdown-item {
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .kittbit-countdown-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .kittbit-heading {
        font-size: 2rem;
    }
    
    .kittbit-container {
        padding: 30px 15px;
    }
    
    .kittbit-map iframe {
        height: 250px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.kittbit-btn:focus,
.kittbit-social a:focus {
    outline: 3px solid var(--busters-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .kittbit-coming-soon {
        background: white;
    }
    
    .kittbit-container {
        box-shadow: none;
        background: white;
    }
    
    .kittbit-social,
    .kittbit-map,
    .kittbit-loader {
        display: none;
    }
}