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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #FEAE2A 0%, #F8DA95 25%, #F1BB5B 50%, #F59599 75%, #6483B1 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    z-index: 10;
}

/* Main content */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jellybean icon animation */
.jellybean-icon {
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jellybean-image {
    width: 120px;
    height: auto;
    max-width: 100%;
    animation: pulse 2s ease-in-out infinite;
}


@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.nyan-cat-link {
    position: fixed;
    z-index: 100;
    cursor: pointer;
    text-decoration: none;
    pointer-events: auto;
    top: 0;
    left:0;
}

.nyan-cat {
    position: relative;
    animation: flyAcross 15s linear infinite;
    will-change: transform;
}


.nyan-cat-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
    display: block;
    
}
.nyan-cat-link:hover .nyan-cat-image {
    transform: scale(1.1);
}

@keyframes flyAcross {
    0% {
        transform: translateX(-100px) translateY(20vh);
    }
    50% {
        transform: translateX(calc(50vw - 40px)) translateY(20vh);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(20vh);
    }
}

/* Typography */
.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #feae2a 0%, #F1BB5B 50%, #F59599 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Email form */
.email-form {
    margin: 40px 0;
}

.form-label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.notify-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.email-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #F1BB5B 0%, #F59599 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(254, 174, 42, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 174, 42, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 20px;
    color: #667eea;
    font-weight: 500;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #f44336;
}

/* Social links */
.social-links {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 12px;
    border-top: 1px solid #e0e0e0;
}

.social-text {
    font-size: 0.9rem;
    color: #999;
}

/* Floating background shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #F59599;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #6483B1;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #F1BB5B;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: #FEAE2A;
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 30px) rotate(270deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content {
        padding: 40px 25px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
}
.nyan-cat-image {
    width: 130px;
    height: 130px;
}



@keyframes flyAcross {
    0% {
        transform: translateX(-100px) translateY(15vh);
    }
    50% {
        transform: translateX(calc(50vw - 30px)) translateY(15vh);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(15vh);
    }
}