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

:root {
    --primary-gradient: linear-gradient(135deg, #8b0000 0%, #1a0033 25%, #4a0080 50%, #8b0000 75%, #ff0040 100%);
    --secondary-gradient: linear-gradient(135deg, #ff0040 0%, #8b0000 50%, #1a0033 100%);
    --accent-gradient: linear-gradient(135deg, #ff0040, #ff3366, #ff6699);
    --dark-bg: #000000;
    --dark-bg-secondary: #0a0005;
    --glass-bg: rgba(255, 0, 64, 0.08);
    --glass-border: rgba(255, 0, 64, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent: #ff0040;
    --accent-glow: rgba(255, 0, 64, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 64, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.25;
    z-index: 0;
    filter: blur(80px);
}

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

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0.5;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px var(--accent-glow));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 20px var(--accent-glow));
    transform: scale(1.05);
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 1s ease-out 0.2s both;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 0, 64, 0.1) 30%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glowRotate 15s linear infinite;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.5;
}

.logo-container::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.05) 90deg,
        rgba(255, 0, 64, 0.08) 180deg,
        rgba(255, 255, 255, 0.05) 270deg,
        transparent 360deg
    );
    border-radius: 50%;
    animation: glowRotate 20s linear infinite reverse;
    z-index: -1;
    filter: blur(35px);
    opacity: 0.4;
}

.logo-image {
    height: clamp(200px, 30vw, 400px);
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 100px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 150px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 200px rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    animation: glowPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 120px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 180px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 240px rgba(255, 255, 255, 0.4));
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 100px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 150px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 200px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 55px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 105px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 155px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 210px rgba(255, 255, 255, 0.35));
    }
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1.4s both;
    margin-top: 0;
}

.social-link {
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    color: var(--accent);
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 10px 40px var(--accent-glow), 
        0 0 20px var(--accent-glow);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.content-wrapper {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.7s;
}

.title-line:nth-child(3) {
    animation-delay: 0.9s;
}

.title-line.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--accent-glow));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--accent-glow));
    }
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.1s both;
}

/* Email Form */
.email-form-container {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 1.3s both;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.email-input-container {
    flex: 1;
    max-width: 0;
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
    transition: 
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s 0.4s;
    will-change: max-width, opacity, transform;
    overflow: hidden;
}

.email-input-container.show {
    max-width: 400px;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition: 
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s;
}

.shine-border-container {
    position: relative;
    --shine-speed: 20s;
    border-radius: 12px;
    padding: 2px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.4);
    flex: 1;
    contain: layout style paint;
    will-change: contents;
}

.shine-border-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 320deg,
        rgba(255, 255, 255, 0.3) 330deg,
        rgba(255, 0, 64, 0.9) 340deg,
        rgba(255, 255, 255, 0.5) 350deg,
        rgba(255, 0, 64, 0.7) 360deg,
        transparent 360deg
    );
    animation: borderOrbit var(--shine-speed) linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    will-change: transform;
    transform-origin: center center;
}

.shine-border-container:has(.input-wrapper:focus-within)::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.15) 60deg,
        rgba(255, 0, 64, 0.7) 120deg,
        rgba(255, 255, 255, 0.4) 180deg,
        rgba(255, 0, 64, 0.7) 240deg,
        rgba(255, 255, 255, 0.15) 300deg,
        transparent 360deg
    );
}

.shine-border-glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 0, 64, 0.4) 40%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.shine-border-glow-orb:nth-child(1) {
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shine-border-glow-orb:nth-child(2) {
    bottom: -50px;
    right: -50px;
    animation-delay: 6s;
}

.shine-border-frame {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shine-border-light {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 0, 64, 0.2) 30%,
        transparent 70%
    );
    animation: lightMove 15s ease-in-out infinite;
    pointer-events: none;
}

.shine-border-light:nth-child(1) {
    top: -50%;
    left: -50%;
    animation-direction: normal;
}

.shine-border-light:nth-child(2) {
    bottom: -50%;
    right: -50%;
    animation-direction: reverse;
    animation-duration: 18s;
}

.input-wrapper {
    position: relative;
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: none;
    border-radius: 8px;
    padding: 0.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.input-wrapper:focus-within {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 30px var(--accent-glow), 
        0 0 50px rgba(255, 0, 64, 0.2);
}

@keyframes borderOrbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(30px, 30px) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes lightMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

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

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

.submit-btn:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 20px var(--accent-glow);
}

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

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
    transition: all 0.3s ease;
}

.form-message.success {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.form-message.error {
    color: #ff0040;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.5s both;
}

.countdown-item {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 15px 50px var(--accent-glow), 0 0 30px rgba(255, 0, 64, 0.3);
}

.countdown-item:hover::before {
    opacity: 0.1;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px var(--accent-glow);
    animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1.7s both;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .main-content {
        padding: 2rem 0;
    }

    .form-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .input-wrapper {
        border-radius: 8px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Message Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.modal-subtitle span {
    color: var(--accent);
    font-weight: 600;
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message-textarea {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    min-height: 150px;
}

.message-textarea::placeholder {
    color: var(--text-secondary);
}

.message-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.2);
    background: rgba(255, 0, 64, 0.05);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cancel-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.send-btn {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 0, 64, 0.3);
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 64, 0.4);
}

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

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }
}

