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

:root {
    --primary-color: #ff0000;
    --secondary-color: #ff4500;
    --accent-color: #ff6b00;
    --bg-primary: #000000;
    --bg-secondary: #1a0000;
    --bg-tertiary: #330000;
    --text-primary: #ffffff;
    --text-secondary: #ffaa00;
    --text-muted: #ff6600;
    --border-color: #660000;
    --shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
    --gradient: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    --fire-gradient: linear-gradient(180deg, #000000 0%, #330000 20%, #660000 40%, #ff0000 60%, #ff4500 80%, #ff6600 100%);
    --intense-fire: radial-gradient(circle, #ff0000 0%, #ff4500 30%, #ff6600 60%, #000000 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    animation: bodyPulse 3s ease-in-out infinite;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 100%, rgba(255, 0, 0, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 0, 0, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: rageFireGlow 2s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.1) 50%, rgba(255, 69, 0, 0.2) 100%);
    z-index: -1;
    animation: infernoPulse 1.5s ease-in-out infinite;
}

@keyframes bodyPulse {
    0%, 100% { 
        background-color: #000000;
    }
    50% { 
        background-color: #0a0000;
    }
}

@keyframes rageFireGlow {
    0% { 
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    100% { 
        opacity: 1;
        transform: scale(1.1) rotate(2deg);
    }
}

@keyframes infernoPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 100%, rgba(255, 0, 0, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 100%, rgba(255, 69, 0, 0.25) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 107, 0, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 100%, rgba(255, 140, 0, 0.25) 0%, transparent 65%),
        radial-gradient(ellipse at 90% 100%, rgba(255, 69, 0, 0.3) 0%, transparent 60%);
    animation: ragingFireFlicker 1s ease-in-out infinite;
}

@keyframes ragingFireFlicker {
    0% { 
        opacity: 0.8;
        transform: scale(1) scaleY(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.03) scaleY(1.1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(0.98) scaleY(1.05);
    }
    75% {
        opacity: 1;
        transform: scale(1.02) scaleY(1.08);
    }
    100% { 
        opacity: 0.85;
        transform: scale(1) scaleY(1);
    }
}

/* Fire particles */
.fire-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fire-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff0000 0%, #ff4500 40%, #ff6b00 70%, transparent 100%);
    border-radius: 50%;
    animation: aggressiveFireRise 3s linear infinite;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 1),
        0 0 20px rgba(255, 69, 0, 0.8),
        0 0 30px rgba(255, 107, 0, 0.6);
    filter: blur(0.5px);
}

@keyframes aggressiveFireRise {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(95vh) translateX(0) scale(1.5) rotate(45deg);
    }
    20% {
        opacity: 1;
        transform: translateY(80vh) translateX(calc(var(--drift, 0) * 0.3)) scale(2) rotate(90deg);
        box-shadow: 
            0 0 15px rgba(255, 0, 0, 1),
            0 0 30px rgba(255, 69, 0, 0.9);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(calc(var(--drift, 0) * 0.6)) scale(1.8) rotate(180deg);
    }
    80% {
        opacity: 0.7;
        transform: translateY(20vh) translateX(var(--drift, 0)) scale(1.2) rotate(270deg);
    }
    100% {
        transform: translateY(-10vh) translateX(calc(var(--drift, 0) * 1.2)) scale(0) rotate(360deg);
        opacity: 0;
    }
}

.floating-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 69, 0, 0.4) 50%, transparent 100%);
    opacity: 0.4;
    animation: float 20s infinite linear, shapeRage 2s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 60px rgba(255, 69, 0, 0.4),
        inset 0 0 20px rgba(255, 0, 0, 0.3);
    filter: blur(1px);
}

@keyframes shapeRage {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 35s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.3);
        opacity: 0.6;
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    }
    50% {
        transform: translateY(-60px) rotate(180deg) scale(1.1);
        opacity: 0.7;
        box-shadow: 0 0 60px rgba(255, 69, 0, 0.7);
    }
    75% {
        transform: translateY(-90px) rotate(270deg) scale(1.4);
        opacity: 0.5;
        box-shadow: 0 0 70px rgba(255, 107, 0, 0.6);
    }
    100% {
        transform: translateY(-120px) rotate(360deg) scale(1);
        opacity: 0.2;
    }
}

/* Main content */
.main-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Header styles */
.header {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line.paused {
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600, #ff0000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.3s both, rageGradient 2s ease-in-out infinite, textShake 0.5s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

@keyframes rageGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-2px) rotate(-0.5deg); }
    75% { transform: translateX(2px) rotate(0.5deg); }
}

.title-line.paused::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff4500, #ff6600, #ff4500, #ff0000);
    background-size: 200% 100%;
    animation: expandWidth 1s ease-out 1s both, fireLineFlow 1s linear infinite;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6),
        0 0 30px rgba(255, 107, 0, 0.4);
}

@keyframes fireLineFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Message section */
.message-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.message-container {
    background: var(--bg-secondary);
    border: 3px solid #ff0000;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: containerRage 2s ease-in-out infinite;
}

@keyframes containerRage {
    0%, 100% {
        border-color: #ff0000;
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 0.8),
            0 0 60px rgba(255, 69, 0, 0.6),
            inset 0 0 20px rgba(255, 0, 0, 0.2);
    }
    50% {
        border-color: #ff4500;
        box-shadow: 
            0 0 40px rgba(255, 0, 0, 1),
            0 0 80px rgba(255, 69, 0, 0.8),
            inset 0 0 30px rgba(255, 0, 0, 0.3);
    }
}

.main-message {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.highlight {
    color: #ff0000;
    font-weight: 700;
    position: relative;
    animation: ragePulse 1s infinite;
    text-shadow: 
        0 0 5px rgba(255, 0, 0, 0.8),
        0 0 10px rgba(255, 69, 0, 0.6),
        0 0 15px rgba(255, 107, 0, 0.4);
}

@keyframes ragePulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        color: #ff0000;
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
        color: #ff4500;
    }
}

/* Urgent payment button */
.urgent-payment {
    margin: 2rem 0;
    text-align: center;
}

.urgent-pay-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    background-size: 200% 200%;
    color: white;
    border: 4px solid #ff0000;
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 1),
        0 8px 35px rgba(255, 69, 0, 0.8),
        inset 0 0 20px rgba(255, 0, 0, 0.4);
    animation: urgentButtonRage 1.5s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes urgentButtonRage {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 1),
            0 8px 35px rgba(255, 69, 0, 0.8),
            inset 0 0 20px rgba(255, 0, 0, 0.4);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
        box-shadow: 
            0 0 40px rgba(255, 0, 0, 1),
            0 12px 45px rgba(255, 69, 0, 1),
            inset 0 0 25px rgba(255, 0, 0, 0.6);
    }
}

.urgent-pay-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 1),
        0 15px 55px rgba(255, 69, 0, 1),
        inset 0 0 30px rgba(255, 0, 0, 0.6);
    animation: urgentButtonRageHover 0.2s ease-in-out infinite;
}

@keyframes urgentButtonRageHover {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

.secondary-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Progress section */
.progress-section {
    margin-top: 2rem;
}

.progress-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressPulse 2s infinite;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Features section */
.features-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.features-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--bg-secondary);
    border: 2px solid #660000;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.feature-item:nth-child(1) { animation-delay: 1.2s; }
.feature-item:nth-child(2) { animation-delay: 1.4s; }
.feature-item:nth-child(3) { animation-delay: 1.6s; }
.feature-item:nth-child(4) { animation-delay: 1.8s; }

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ff0000;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 10px 40px rgba(255, 69, 0, 0.6);
    animation: featureRage 0.5s ease-in-out infinite;
}

@keyframes featureRage {
    0%, 100% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-7px) scale(1.08); }
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Contact section */
.contact-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-card {
    background: var(--bg-secondary);
    border: 3px solid #ff0000;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: containerRage 2s ease-in-out infinite 0.5s;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.contact-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* WhatsApp button styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20c55a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.whatsapp-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-modal-btn:hover {
    background: #20c55a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.status-badge {
    background: linear-gradient(135deg, #ff0000, #ff4500);
    background-size: 200% 200%;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid #ff0000;
    animation: badgeRage 1s infinite;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6);
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

@keyframes badgeRage {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.1);
    }
}

.cta-button {
    text-align: center;
}

.resume-btn {
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    background-size: 200% 200%;
    color: white;
    border: 3px solid #ff0000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        0 5px 25px rgba(255, 69, 0, 0.6),
        inset 0 0 15px rgba(255, 0, 0, 0.3);
    animation: buttonRage 2s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    display: inline-block;
}

@keyframes buttonRage {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            0 0 20px rgba(255, 0, 0, 0.8),
            0 5px 25px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 0, 0, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 1),
            0 8px 35px rgba(255, 69, 0, 0.8),
            inset 0 0 20px rgba(255, 0, 0, 0.5);
    }
}

.resume-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 1),
        0 10px 45px rgba(255, 69, 0, 0.9),
        inset 0 0 25px rgba(255, 0, 0, 0.5);
    animation: buttonRageHover 0.3s ease-in-out infinite;
}

@keyframes buttonRageHover {
    0%, 100% { transform: translateY(-3px) scale(1.1); }
    50% { transform: translateY(-5px) scale(1.12); }
}

/* Footer */
.footer {
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.4s both;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 69, 0, 0.2),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.footer-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.8),
        0 0 20px rgba(255, 69, 0, 0.6),
        0 0 30px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerRage 2s ease-in-out infinite;
    border: 2px solid rgba(255, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

@keyframes footerRage {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 
            0 0 10px rgba(255, 0, 0, 0.8),
            0 0 20px rgba(255, 69, 0, 0.6),
            0 0 30px rgba(255, 107, 0, 0.4);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 
            0 0 15px rgba(255, 0, 0, 1),
            0 0 25px rgba(255, 69, 0, 0.8),
            0 0 35px rgba(255, 107, 0, 0.6);
    }
}

.footer-animation {
    height: 1.5rem;
    overflow: hidden;
}

.typing-text {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    animation: typing 3s steps(40) infinite;
    text-shadow: 
        0 0 8px rgba(255, 0, 0, 0.9),
        0 0 16px rgba(255, 69, 0, 0.7),
        0 0 24px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: typing 3s steps(40) infinite, typingRage 2s ease-in-out infinite;
}

@keyframes typingRage {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Footer website link */
.footer-website {
    margin: 1.5rem 0;
    text-align: center;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border: 3px solid #ff0000;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff6600);
    background-size: 200% 200%;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.8);
    animation: websiteRage 2s ease-in-out infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.8),
        0 8px 30px rgba(255, 69, 0, 0.6),
        inset 0 0 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.website-link:hover::before {
    left: 100%;
}

@keyframes websiteRage {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 
            0 0 25px rgba(255, 0, 0, 0.8),
            0 8px 30px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 0, 0, 0.3);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
        box-shadow: 
            0 0 35px rgba(255, 0, 0, 1),
            0 12px 40px rgba(255, 69, 0, 0.8),
            inset 0 0 20px rgba(255, 0, 0, 0.5);
    }
}

.website-link:hover {
    transform: scale(1.1) translateY(-3px);
    border-color: #ff4500;
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 1),
        0 15px 50px rgba(255, 69, 0, 0.8),
        inset 0 0 25px rgba(255, 0, 0, 0.5);
    animation: websiteRageHover 0.3s ease-in-out infinite;
}

@keyframes websiteRageHover {
    0%, 100% { 
        transform: scale(1.1) translateY(-3px);
    }
    50% { 
        transform: scale(1.15) translateY(-5px);
    }
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-btn, .cancel-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.email-btn {
    background: var(--gradient);
    color: white;
}

.cancel-btn {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.email-btn:hover, .cancel-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .message-container,
    .contact-card {
        padding: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-message {
        font-size: 1.2rem;
    }
    
    .secondary-message {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}
