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

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}


.splash-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f1015 0%, #16182a 50%, #2a2d47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0caf5;
    padding-top: 20px;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(125, 207, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(187, 154, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 158, 100, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

.content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2.5rem auto;
    filter: drop-shadow(0 0 20px rgba(125, 207, 255, 0.3));
    display: block;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3.5rem;
}

.animation-container {
    margin: 3rem 0;
}

.tshirt-icon {
    font-size: 6rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.tshirt-icon.transforming {
    animation: magic-potion 2.5s ease-in-out;
}

.tshirt-icon::before {
    content: '✨';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
}

.tshirt-icon.transforming::before {
    animation: sparkles 2.5s ease-in-out;
}

.tshirt-icon::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 154, 247, 0) 0%, rgba(187, 154, 247, 0.2) 60%, rgba(125, 207, 255, 0.4) 100%);
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.tshirt-icon.transforming::after {
    animation: magic-glow 2.5s ease-in-out;
}

@keyframes magic-potion {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        filter: brightness(1) drop-shadow(0 0 0 rgba(187, 154, 247, 0));
    }
    50% { 
        transform: translateY(-10px) scale(1.08); 
        filter: brightness(1.3) drop-shadow(0 0 12px rgba(187, 154, 247, 0.7)) saturate(1.2);
    }
}

@keyframes sparkles {
    0%, 100% { 
        opacity: 0; 
        transform: translateX(-50%) translateY(0) scale(0.5);
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(-20px) scale(1.2);
    }
}

@keyframes magic-glow {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.8);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.2);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.cta-section {
    margin-top: 3rem;
}

/* Common button styles */
.btn-base {
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cta-button {
    background: rgba(125, 207, 255, 0.2);
    border: 2px solid rgba(125, 207, 255, 0.8);
    color: #c0caf5;
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 320px;
    text-align: center;
}

.cta-button:hover {
    background: rgba(125, 207, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(125, 207, 255, 0.2);
}

.button-text {
    transition: opacity 0.15s ease;
}

.cta-button.border-animation {
    animation: clockwise-border-glow 2s ease-in-out;
}

@keyframes clockwise-border-glow {
    0%, 100% {
        border-color: rgba(125, 207, 255, 0.8);
        box-shadow: 0 0 0 rgba(125, 207, 255, 0);
    }
    25% {
        border-color: rgba(187, 154, 247, 0.8);
        box-shadow: 0 0 8px rgba(187, 154, 247, 0.4);
    }
    50% {
        border-color: rgba(255, 158, 100, 0.8);
        box-shadow: 0 0 8px rgba(255, 158, 100, 0.4);
    }
    75% {
        border-color: rgba(158, 206, 106, 0.8);
        box-shadow: 0 0 8px rgba(158, 206, 106, 0.4);
    }
}

.coming-soon {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.email-input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.email-input {
    background: rgba(125, 207, 255, 0.1);
    border: 2px solid rgba(125, 207, 255, 0.6);
    color: #c0caf5;
    padding: 15px 100px 15px 20px;
    font-size: 1rem;
    width: 100%;
}

.email-input::placeholder {
    color: rgba(192, 202, 245, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: rgba(125, 207, 255, 0.9);
    background: rgba(125, 207, 255, 0.15);
    box-shadow: 0 0 10px rgba(125, 207, 255, 0.3);
}

.email-submit-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: rgba(187, 154, 247, 0.8);
    border: none;
    color: #c0caf5;
    padding: 0 20px;
    font-size: 0.9rem;
    min-width: 80px;
}

.email-submit-btn:hover:not(:disabled) {
    background: rgba(187, 154, 247, 1);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(187, 154, 247, 0.4);
}

.email-submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    background: rgba(158, 206, 106, 0.8);
    transform: none;
}


@media (max-width: 768px) {
    .main-logo {
        max-width: 180px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .tshirt-icon {
        font-size: 4rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 280px;
    }
    
    .email-form {
        max-width: 350px;
    }
    
    .email-input {
        font-size: 0.9rem;
        padding: 12px 90px 12px 18px;
    }
    
    .email-submit-btn {
        font-size: 0.8rem;
        padding: 0 15px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 150px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .content {
        padding: 0 15px;
    }
    
    .email-form {
        max-width: 300px;
    }
    
    .email-input {
        font-size: 0.8rem;
        padding: 10px 80px 10px 15px;
    }
    
    .email-submit-btn {
        font-size: 0.75rem;
        padding: 0 12px;
        min-width: 60px;
    }
}