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

:root {
    /* Modern Black & White Color Palette */
    --primary-black: #000000;
    --secondary-black: #111111;
    --tertiary-black: #1a1a1a;
    --quaternary-black: #222222;
    --primary-white: #ffffff;
    --secondary-white: #f8f8f8;
    --tertiary-white: #f0f0f0;
    --accent-gray: #666666;
    --light-gray: #999999;
    --medium-gray: #333333;
    --dark-gray: #2a2a2a;
    --border-color: #333333;
    --border-light: #555555;
    --success-color: #00ff00;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    --gradient-secondary: linear-gradient(135deg, #111111 0%, #222222 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Make all images non-draggable */
img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

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

/* Header */
.header {
    background: var(--secondary-black);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    height: 60px;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-image {
    max-height: 140px;
    height: 140px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateX(-3rem);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-white);
    background: var(--tertiary-black);
    box-shadow: var(--shadow-md);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* X Link Styling */
.x-link {
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.x-link::after {
    display: none;
}

.x-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.x-text {
    font-size: 1.5rem;
    color: var(--primary-white);
    transition: color 0.3s ease;
    display: block;
    font-weight: bold;
}

.x-link:hover .x-text {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    background: var(--gradient-secondary);
    padding: 0 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    margin-bottom: -2rem;
    margin-top: -4rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    margin-top: -5rem;
    color: var(--primary-white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    margin-top: -1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto 0 auto;
}

.search-input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    background: var(--tertiary-black);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), var(--shadow-lg);
    background: var(--quaternary-black);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.01em;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--tertiary-black);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-white);
    border-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Celebrity Grid */
.celebrity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* No Results Section */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--tertiary-black);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.no-results h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.search-suggestions {
    margin-top: 2rem;
}

.search-suggestions p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.suggestion-tag {
    background: var(--primary-black);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.suggestion-tag:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.celebrity-card {
    background: var(--tertiary-black);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.celebrity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.celebrity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-white);
    background: var(--quaternary-black);
}

.celebrity-card:hover::before {
    opacity: 1;
}

.celebrity-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.celebrity-card:hover .celebrity-image {
    border-color: var(--primary-white);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.celebrity-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.celebrity-category {
    color: var(--primary-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.celebrity-handle {
    background: var(--primary-black);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.celebrity-handle:hover {
    border-color: var(--primary-white);
    background: var(--secondary-black);
    box-shadow: var(--shadow-md);
}

.copy-btn {
    background: var(--primary-white);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-white);
}

.copy-btn:active {
    transform: scale(0.95);
}


/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-black);
    color: var(--accent-gold);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent-gold);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

/* About Section */
.about {
    background: var(--primary-black);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.support-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-section h3 {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: var(--primary-white);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-white);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.support-btn:hover::before {
    left: 100%;
}

.support-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: var(--primary-white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-white);
}

.support-btn i {
    font-size: 1.5rem;
    animation: coinPulse 2s ease-in-out infinite;
}

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

/* Newsletter Section */
.newsletter {
    background: var(--gradient-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.01em;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: var(--tertiary-black);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), var(--shadow-lg);
    background: var(--quaternary-black);
}

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

.newsletter-btn {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    border-radius: 15px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    background: var(--secondary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.newsletter-btn i {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(5px);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-image {
        max-height: 55px;
        height: 55px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .celebrity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .suggestion-tags {
        gap: 0.5rem;
    }
    
    .suggestion-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .celebrity-card {
        padding: 1.5rem;
    }
    
    .celebrity-image {
        width: 100px;
        height: 100px;
    }
    
    .celebrity-name {
        font-size: 1.3rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.celebrity-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-white);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-white);
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    color: var(--primary-white);
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.search-result-category {
    color: var(--accent-gold);
    font-size: 12px;
    margin: 0;
}

.search-result-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--primary-black);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    color: rgba(255, 255, 255, 0.7);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2001;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-body {
    display: flex;
    padding: 30px;
    gap: 30px;
}

.modal-image {
    flex-shrink: 0;
}

.modal-image img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.modal-info {
    flex: 1;
    color: var(--primary-white);
}

.modal-info h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: var(--primary-white);
}

.modal-category {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.modal-handle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.modal-handle span {
    font-family: 'Courier New', monospace;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 16px;
}

.modal-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-popularity {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.modal-popularity strong {
    color: var(--accent-gold);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }
    
    .modal-image img {
        width: 120px;
        height: 120px;
    }
    
    .modal-info h2 {
        font-size: 24px;
    }
}
