/* ============================================
   هيئة الهلال الأحمر بمدينة الثريا
   Thuraya Red Crescent Authority
   Medical Emergency Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primary Colors - Medical Red */
    --primary: #c62828;
    --primary-dark: #8e0000;
    --primary-light: #ff5f52;
    --primary-glow: rgba(198, 40, 40, 0.4);
    
    /* Secondary - Medical Green */
    --secondary: #2e7d32;
    --secondary-light: #60ad5e;
    --secondary-dark: #005005;
    
    /* Background Tones */
    --bg-primary: #1a0a0a;
    --bg-secondary: #2d1414;
    --bg-tertiary: #3d1e1e;
    --bg-card: rgba(45, 20, 20, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Accents */
    --accent-gold: #ffd700;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    
    /* Effects */
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.6);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(198, 40, 40, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(198, 40, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

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

/* Heartbeat Line Animation */
.heartbeat-line {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
    animation: heartbeatLine 2s ease-in-out infinite;
    z-index: 1000;
    opacity: 0.6;
}

@keyframes heartbeatLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 0.8; }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(198, 40, 40, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    padding: 0;
    object-fit: cover;
    box-shadow: 0 0 20px var(--primary-glow);
}

.nav-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: rgba(198, 40, 40, 0.15);
}

.nav-menu a.active {
    color: var(--primary-light);
    background: rgba(198, 40, 40, 0.2);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-right: 8px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: var(--bg-secondary);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: var(--border-radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: rgba(198, 40, 40, 0.2);
    color: var(--text-primary);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

/* ECG Pattern Background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0,25 L30,25 L35,25 L40,10 L45,40 L50,5 L55,45 L60,25 L65,25 L200,25' fill='none' stroke='%23c6282820' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    transform: translateY(-50%);
    animation: ecgMove 4s linear infinite;
    opacity: 0.5;
}

@keyframes ecgMove {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(-50%); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: white;
    padding: 0;
    box-shadow: 
        0 0 0 3px var(--primary),
        0 0 40px var(--primary-glow),
        0 0 80px rgba(198, 40, 40, 0.2);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        box-shadow: 
            0 0 0 4px var(--primary),
            0 0 40px var(--primary-glow),
            0 0 80px rgba(198, 40, 40, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 0 6px var(--primary-light),
            0 0 60px var(--primary-glow),
            0 0 100px rgba(198, 40, 40, 0.3);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-slogan {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.beating-heart {
    color: var(--primary);
    animation: heartbeat 1s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    35% { transform: scale(1); }
    45% { transform: scale(1.15); }
    55% { transform: scale(1); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.4);
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 80px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title h2 i {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(198, 40, 40, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* ============================================
   Name Generator
   ============================================ */
.name-generator {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.generator-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(198, 40, 40, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.generator-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0.1;
    border-radius: 0 var(--border-radius-lg) 0 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(198, 40, 40, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.result-box {
    background: rgba(198, 40, 40, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: none;
}

.result-box.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.result-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

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

/* ============================================
   Quick Links Grid
   ============================================ */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.link-card {
    background: var(--bg-card);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--primary-glow);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.link-card:hover i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.link-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.link-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   Codes Section
   ============================================ */
.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.code-card {
    background: var(--bg-card);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.code-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.code-card:hover {
    transform: translateX(-5px);
    border-color: var(--primary);
}

.code-card h4 {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.code-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Video Section
   ============================================ */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 2px solid rgba(198, 40, 40, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

/* ============================================
   Map Section
   ============================================ */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(198, 40, 40, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.map-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.map-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.map-warning i {
    font-size: 2rem;
    color: var(--primary);
}

.map-warning p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   Discord Banner
   ============================================ */
.discord-banner {
    background: linear-gradient(135deg, #5865f2, #404eed);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.3);
    transition: var(--transition);
}

.discord-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(88, 101, 242, 0.4);
}

.discord-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.discord-info p {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-banner svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(198, 40, 40, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    padding: 4px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-text a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-credit {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-credit i {
    color: var(--primary);
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-secondary);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-strong);
    z-index: 10000;
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    border-color: var(--success);
}

.toast.success i {
    color: var(--success);
}

.toast.error {
    border-color: var(--error);
}

.toast.error i {
    color: var(--error);
}

/* ============================================
   Custom Tooltip (for form validation)
   ============================================ */
.form-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-dark);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.form-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border: 8px solid transparent;
    border-top-color: var(--primary-dark);
}

.form-group.error .form-tooltip {
    opacity: 1;
    visibility: visible;
}

.form-group.error .form-control {
    border-color: var(--error);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary-light);
    transform: rotate(90deg);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(198, 40, 40, 0.1);
        margin-top: 5px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .discord-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 1rem;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .hero-logo {
        width: 130px;
        height: 130px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo span {
        display: none;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .generator-card {
        padding: 1.5rem;
    }
}

