body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #2d1b69 0%, #11061d 100%);
    color: white;
    position: relative;
}

html {
    margin: 0;
    padding: 0;
}

.diagonal-email {
    font-size: 3rem;
    font-weight: 900;
    transform: rotate(-45deg);
    letter-spacing: 3px;
    position: absolute;
    top: 40%;
    left: 15%;
    animation: slideIn 8s ease-out;
}

@keyframes slideIn {
    0% {
        top: calc(40% - 300px);
        left: calc(15% + 300px);
        opacity: 1;
    }
    100% {
        top: 40%;
        left: 15%;
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .diagonal-email {
        font-size: 1.5rem;
        top: 50%;
        left: 10%;
        transform: translateY(-50%) rotate(-45deg);
        animation: slideInMobile 8s ease-out;
    }
    
    @keyframes slideInMobile {
        0% {
            top: calc(50% - 100px);
            left: calc(10% + 100px);
        }
        100% {
            top: 50%;
            left: 10%;
        }
    }
    
}

.corner-text {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    opacity: 0.7;
}

.rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.drop {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
    animation: fall linear infinite;
}

.drop:nth-child(1) { left: 10%; animation-duration: 0.8s; animation-delay: 0s; }
.drop:nth-child(2) { left: 20%; animation-duration: 1.2s; animation-delay: 0.2s; }
.drop:nth-child(3) { left: 30%; animation-duration: 0.9s; animation-delay: 0.4s; }
.drop:nth-child(4) { left: 40%; animation-duration: 1.1s; animation-delay: 0.1s; }
.drop:nth-child(5) { left: 50%; animation-duration: 0.7s; animation-delay: 0.3s; }
.drop:nth-child(6) { left: 60%; animation-duration: 1.0s; animation-delay: 0.5s; }
.drop:nth-child(7) { left: 70%; animation-duration: 0.8s; animation-delay: 0.2s; }
.drop:nth-child(8) { left: 80%; animation-duration: 1.3s; animation-delay: 0.1s; }
.drop:nth-child(9) { left: 90%; animation-duration: 0.9s; animation-delay: 0.4s; }
.drop:nth-child(10) { left: 15%; animation-duration: 1.1s; animation-delay: 0.6s; }
.drop:nth-child(11) { left: 25%; animation-duration: 0.8s; animation-delay: 0.3s; }
.drop:nth-child(12) { left: 35%; animation-duration: 1.2s; animation-delay: 0.1s; }
.drop:nth-child(13) { left: 45%; animation-duration: 0.7s; animation-delay: 0.4s; }
.drop:nth-child(14) { left: 55%; animation-duration: 1.0s; animation-delay: 0.2s; }
.drop:nth-child(15) { left: 65%; animation-duration: 0.9s; animation-delay: 0.5s; }
.drop:nth-child(16) { left: 75%; animation-duration: 1.1s; animation-delay: 0.1s; }
.drop:nth-child(17) { left: 85%; animation-duration: 0.8s; animation-delay: 0.3s; }
.drop:nth-child(18) { left: 95%; animation-duration: 1.3s; animation-delay: 0.2s; }
.drop:nth-child(19) { left: 5%; animation-duration: 0.9s; animation-delay: 0.4s; }
.drop:nth-child(20) { left: 12%; animation-duration: 1.0s; animation-delay: 0.6s; }

@keyframes fall {
    0% {
        top: -100px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .drop:nth-child(n+11) {
        display: none;
    }
}