/* ZinkMovies Premium Futuristic Cyberpunk Layout CSS */

:root {
    --primary-glow: #00f0ff;
    --secondary-glow: #ad00ff;
    --accent-glow: #ff0055;
    --success-glow: #00ff66;
    --warning-glow: #ffcc00;
    --bg-dark: #050511;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #8e95ad;
    --font-outfit: 'Outfit', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050511;
}
::-webkit-scrollbar-thumb {
    background: rgba(173, 0, 255, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-outfit);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    
    /* Futuristic Grid Background */
    background-image: 
        radial-gradient(circle at 20% 15%, rgba(0, 240, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 85%, rgba(173, 0, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 85, 0.03) 0%, transparent 35%),
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px;
}

.container {
    max-width: 1650px;
    width: 96%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Navbar - Cyber Glass */
.header {
    background: rgba(5, 5, 17, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-space);
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 10%, var(--primary-glow) 50%, var(--secondary-glow) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--primary-glow);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.admin-login-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    background: rgba(173, 0, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(173, 0, 255, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(173, 0, 255, 0.05);
}

.admin-login-btn:hover {
    background: var(--secondary-glow);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(173, 0, 255, 0.4);
    transform: translateY(-1px);
}

/* Centered Futuristic Hero Section */
.hero-section {
    padding: 100px 0 70px;
    position: relative;
    border-bottom: 1px solid var(--card-border);
}

.hero-content-centered {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Glowing Border Badge */
.brand-badge {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(0, 240, 255, 0.3);
    color: var(--primary-glow);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.05);
    animation: badgePulse 3s infinite ease-in-out;
}

.hero-title {
    font-family: var(--font-space);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 10%, var(--primary-glow) 45%, var(--secondary-glow) 75%, var(--accent-glow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 10s linear infinite;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 45px;
    line-height: 1.65;
    max-width: 780px;
}

/* Pulsing CTA Glow Wrapper */
.cta-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    color: #050511;
    padding: 18px 48px;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(0, 240, 255, 0.25), 
        0 0 40px rgba(173, 0, 255, 0.15),
        inset 0 -4px 0 rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.45), 
        0 0 60px rgba(173, 0, 255, 0.35);
    color: #ffffff;
}

.cta-button:hover::after {
    animation: shineLight 1.5s infinite;
}

.cta-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.fallback-redirect {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.fallback-redirect a {
    color: var(--primary-glow);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--primary-glow);
}

.fallback-redirect a:hover {
    color: #ffffff;
    border-bottom-style: solid;
}

/* 2-Column Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.15fr;
    gap: 45px;
    margin-top: 50px;
}

.section {
    padding: 40px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 35px;
}

.section-title {
    font-family: var(--font-space);
    font-size: 1.9rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    border-radius: 10px;
}

/* About Box - Glassmorphism */
.about-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.about-box:hover {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.02);
}

.about-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.7;
}

.about-box p:last-child {
    margin-bottom: 0;
}

.about-box strong {
    color: #ffffff;
    font-weight: 500;
}

.about-box em {
    color: var(--primary-glow);
    font-style: normal;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

/* Custom Brands Mirror Nodes Grid - Cyberpunk Glow Card */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.04);
}

.feature-card h3 {
    font-family: var(--font-space);
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
    margin-bottom: 18px;
    font-weight: 300;
}

.feature-bullet-list {
    list-style: none;
}

.feature-bullet-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-bullet-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-glow);
    text-shadow: 0 0 5px var(--primary-glow);
}

/* Color-coded Brand Node Cards (Filmyfly, HdHub4u, etc.) */
#brands-section .feature-card {
    position: relative;
    overflow: hidden;
}

#brands-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--card-border);
    transition: all 0.3s ease;
}

/* Individual Brand Node Neon Accents */
#brands-section .feature-card:nth-child(1):hover { border-color: #00f0ff; box-shadow: 0 10px 30px rgba(0, 240, 255, 0.08); }
#brands-section .feature-card:nth-child(1):hover::before { background: #00f0ff; }

#brands-section .feature-card:nth-child(2):hover { border-color: #ffcc00; box-shadow: 0 10px 30px rgba(255, 204, 0, 0.08); }
#brands-section .feature-card:nth-child(2):hover::before { background: #ffcc00; }

#brands-section .feature-card:nth-child(3):hover { border-color: #ad00ff; box-shadow: 0 10px 30px rgba(173, 0, 255, 0.08); }
#brands-section .feature-card:nth-child(3):hover::before { background: #ad00ff; }

#brands-section .feature-card:nth-child(4):hover { border-color: #ff0055; box-shadow: 0 10px 30px rgba(255, 0, 85, 0.08); }
#brands-section .feature-card:nth-child(4):hover::before { background: #ff0055; }

#brands-section .feature-card:nth-child(5):hover { border-color: #00ff66; box-shadow: 0 10px 30px rgba(0, 255, 102, 0.08); }
#brands-section .feature-card:nth-child(5):hover::before { background: #00ff66; }

#brands-section .feature-card:nth-child(6):hover { border-color: #0077ff; box-shadow: 0 10px 30px rgba(0, 119, 255, 0.08); }
#brands-section .feature-card:nth-child(6):hover::before { background: #0077ff; }

#brands-section .feature-card:nth-child(7):hover { border-color: #ff7700; box-shadow: 0 10px 30px rgba(255, 119, 0, 0.08); }
#brands-section .feature-card:nth-child(7):hover::before { background: #ff7700; }

/* Side widgets */
.sidebar-widget {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 35px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.widget-title {
    font-family: var(--font-space);
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 12px;
}

.category-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.category-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-card::after {
    content: '→';
    opacity: 0.3;
    transform: translateX(-3px);
    transition: all 0.3s ease;
    color: var(--primary-glow);
}

.category-card:hover {
    background: rgba(0, 240, 255, 0.02);
    border-color: rgba(0, 240, 255, 0.25);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.05);
}

.category-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Tag Cloud Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud .tag {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
    border-color: var(--primary-glow);
    color: var(--primary-glow);
    background: rgba(0, 240, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.1);
}

/* FAQ Accordion Styling */
.faq-box {
    margin-top: 25px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--card-border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    font-family: var(--font-space);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '✦';
    font-size: 0.85rem;
    color: var(--primary-glow);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Legal Box */
.legal-box {
    background: rgba(255, 255, 255, 0.005);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 35px;
    margin-top: 40px;
}

.legal-box h3 {
    font-family: var(--font-space);
    color: var(--secondary-glow);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-box p:last-child {
    margin-bottom: 0;
}

.legal-details {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.88rem;
}

.legal-details a {
    color: var(--primary-glow);
    text-decoration: none;
    font-weight: 500;
}

.legal-details a:hover {
    text-decoration: underline;
}

/* Footer Section */
.footer {
    background-color: rgba(3, 3, 10, 0.65);
    border-top: 1px solid var(--card-border);
    padding: 50px 0;
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-glow);
}

.footer-closing {
    font-family: var(--font-space);
    font-size: 1.1rem;
    color: var(--primary-glow);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

/* Keyframe Animations */
@keyframes badgePulse {
    0%, 100% {
        border-color: rgba(0, 240, 255, 0.3);
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
    }
    50% {
        border-color: rgba(173, 0, 255, 0.5);
        box-shadow: 0 0 20px rgba(173, 0, 255, 0.15);
    }
}

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

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

/* Responsive Grid Adaptations */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.3rem;
    }
}

/* ================= SUPPORT & DMCA MODAL SYSTEM ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(8, 8, 22, 0.96);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 
        0 0 35px rgba(0, 240, 255, 0.15), 
        0 0 70px rgba(173, 0, 255, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.01);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.open .modal-container {
    transform: scale(1) translateY(0);
}

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

.modal-close-btn:hover {
    color: var(--accent-glow);
    background: rgba(255, 0, 85, 0.08);
    border-color: rgba(255, 0, 85, 0.25);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-title {
    font-family: var(--font-space);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.required-star {
    color: var(--accent-glow);
}

.modal-input, .modal-textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 12px 18px;
    color: #ffffff;
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.modal-input:focus, .modal-textarea:focus {
    border-color: var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.modal-textarea {
    min-height: 110px;
    resize: vertical;
}

.modal-field-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.45;
}

.modal-field-note strong {
    color: var(--warning-glow);
    font-weight: 500;
}

.modal-submit-btn {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    color: #050511;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.35);
    color: #ffffff;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Modal Response Message Alerts */
.modal-alert {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 22px;
    font-weight: 500;
    line-height: 1.45;
}

.modal-alert-success {
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--success-glow);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.05);
}

.modal-alert-danger {
    background: rgba(255, 0, 85, 0.08);
    border: 1px solid rgba(255, 0, 85, 0.3);
    color: #ff3366;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.05);
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .modal-container {
        padding: 30px 20px;
    }
}

