/* CSS Variables */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-light: #2a2a2a;
    --color-text: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-primary: #3a86ff;
    --color-primary-light: #5a9cff;
    --color-primary-dark: #2a66cc;
    --color-accent: #00d4ff;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(58, 134, 255, 0.3);
    --shadow-pop: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
    :root {
        --color-bg: #f5f5f5;
        --color-surface: #ffffff;
        --color-surface-light: #f0f0f0;
        --color-text: #1a1a1a;
        --color-text-secondary: #5a5a5a;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Floating Coding Elements Background */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    mix-blend-mode: screen;
}

@media (prefers-color-scheme: light) {
    .floating-elements {
        mix-blend-mode: multiply;
    }
}

.floating-element {
    position: absolute;
    color: rgba(58, 134, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    user-select: none;
    opacity: 0;
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 1;
}

.floating-element.active {
    opacity: 1;
}

/* Hover effects for floating elements */
.floating-element:hover {
    color: rgba(58, 134, 255, 0.8);
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.6),
                 0 0 40px rgba(58, 134, 255, 0.4),
                 0 0 60px rgba(58, 134, 255, 0.2);
    transform: scale(1.3);
    z-index: 10;
    opacity: 1 !important;
}

/* Different colors for different element types on hover */
.floating-element[data-type="html"]:hover {
    color: rgba(227, 76, 38, 0.8); /* HTML orange */
    text-shadow: 0 0 20px rgba(227, 76, 38, 0.6),
                 0 0 40px rgba(227, 76, 38, 0.4);
}

.floating-element[data-type="css"]:hover {
    color: rgba(38, 77, 228, 0.8); /* CSS blue */
    text-shadow: 0 0 20px rgba(38, 77, 228, 0.6),
                 0 0 40px rgba(38, 77, 228, 0.4);
}

.floating-element[data-type="js"]:hover {
    color: rgba(247, 223, 30, 0.8); /* JavaScript yellow */
    text-shadow: 0 0 20px rgba(247, 223, 30, 0.6),
                 0 0 40px rgba(247, 223, 30, 0.4);
}

.floating-element[data-type="bracket"]:hover,
.floating-element[data-type="curly"]:hover {
    color: rgba(0, 212, 255, 0.8); /* Accent cyan */
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.4);
}

.floating-element[data-type="slash"]:hover,
.floating-element[data-type="arrow"]:hover {
    color: rgba(157, 78, 221, 0.8); /* Purple */
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.6),
                 0 0 40px rgba(157, 78, 221, 0.4);
}

.floating-element[data-type="tag"]:hover,
.floating-element[data-type="function"]:hover,
.floating-element[data-type="var"]:hover {
    color: rgba(58, 134, 255, 0.8); /* Primary blue */
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.6),
                 0 0 40px rgba(58, 134, 255, 0.4);
}

/* Pulse animation on hover */
.floating-element:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Cursor tracking for better interaction */
.floating-element.interactive {
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
    .floating-element {
        transition: opacity 0.3s ease;
    }
    
    .floating-element:hover {
        transform: scale(1.1);
    }
    
    .floating-element:hover::before {
        animation: none;
        opacity: 0.3;
    }
}

/* Ensure floating elements don't interfere with main content */
main {
    position: relative;
    z-index: 2;
}

.header {
    position: relative;
    z-index: 1000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-surface-light);
}

.btn-secondary:hover, .btn-secondary:focus {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.2);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    text-decoration: none;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link:focus::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 3px 0;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(58, 134, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-title {
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.2s both;
}

.highlight {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-weight-semibold);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 1s ease 0.4s both;
}

/* Floating Image Container */
.floating-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    animation: float 6s ease-in-out infinite;
}

.profile-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 370px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    z-index: 2;
    animation: profileFloat 8s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 8px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
    animation: glowPulse 4s ease-in-out infinite;
}

/* About Section */
.about {
    padding: var(--space-xxl) 0;
    background-color: var(--color-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

.skills-title {
    margin-bottom: var(--space-lg);
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.skill-name {
    font-weight: var(--font-weight-medium);
}

.skill-bar {
    height: 8px;
    background-color: var(--color-surface-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-sm);
    width: 0;
    transition: width 1.5s ease;
}

/* Projects Section */
.projects {
    padding: var(--space-xxl) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.project-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-pop);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.project-view-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.project-content {
    padding: var(--space-lg);
}

.project-title {
    margin-bottom: var(--space-sm);
}

.project-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.tech-tag {
    background-color: var(--color-surface-light);
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-pop);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.modal-title {
    font-size: 1.75rem;
}

.modal-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.modal-links {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
}

/* Experience Section */
.experience {
    padding: var(--space-xxl) 0;
    background-color: var(--color-surface);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 22px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: 3px solid var(--color-surface);
    box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline-content {
    background-color: var(--color-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    margin-bottom: var(--space-xs);
}

.timeline-period {
    display: inline-block;
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-sm);
}

.timeline-description {
    color: var(--color-text-secondary);
}

/* Contact Section */
.contact {
    padding: var(--space-xxl) 0;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.contact-label {
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
}

.contact-link, .contact-text {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 1.1rem;
}

.contact-link:hover, .contact-link:focus {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
}

.social-link:hover, .social-link:focus {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Footer */
.footer {
    background-color: var(--color-surface);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-surface-light);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    color: var(--color-text-secondary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes profileFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(1deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(-1deg);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .floating-image-container {
        height: 400px;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-details {
        gap: var(--space-lg);
    }
    
    .social-links {
        gap: var(--space-sm);
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 12px;
    }
    
    .modal-body {
        padding: var(--space-lg);
    }
    
    .modal-links {
        flex-direction: column;
    }
}