* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #0d1a2d;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.announcement-bar {
    width: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #ff873f 25%, #ffaa55 50%, #ffcc7a 100%);
    padding: 12px 0;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.announcement-bar p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.header {
    background: #ffffff;
    padding: 20px 0;
    animation: fadeInUp 0.8s ease 0.3s both;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-heart {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-heart {
    animation: wiggle 0.5s ease;
}

.logo-heart .pixel {
    fill: #ff4d8f;
    transition: fill 0.3s ease;
}

.logo:hover .logo-heart .pixel {
    fill: #ff6ba9;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0d1a2d;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.badge-btn {
    background: #f3f4f6;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-btn:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0d1a2d;
}

.arrow {
    font-size: 10px;
}

.new-badge {
    background: #ff873f;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 2px;
    animation: bounce 2s ease-in-out infinite;
}

.join-btn {
    background: transparent;
    border: 2px solid #0d1a2d;
    color: #0d1a2d;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.join-btn:hover {
    background: #0d1a2d;
    color: #ffffff;
}

.hero-section {
    position: relative;
    min-height: auto;
    padding: 60px 0 80px;
    animation: fadeIn 1s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixel-heart-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixel-heart {
    width: 320px;
    height: 320px;
    animation: heartbeat 2s ease-in-out infinite;
}

.pixel-heart .pixel {
    fill: #ff4d8f;
    animation: pixelGlow 3s ease-in-out infinite;
}

.pixel-heart .pixel:nth-child(odd) {
    animation-delay: 0.2s;
}

.pixel-heart .pixel:nth-child(even) {
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes pixelGlow {
    0%, 100% {
        fill: #ff4d8f;
        opacity: 1;
    }
    50% {
        fill: #ff6ba9;
        opacity: 0.8;
    }
}

.heart-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff4d8f;
    border-radius: 50%;
    animation: floatParticle 4s ease-in-out infinite;
}

.heart-particle:nth-child(2) {
    animation-delay: 1s;
}

.heart-particle:nth-child(3) {
    animation-delay: 2s;
}

.heart-particle:nth-child(4) {
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.hero-right {
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #0d1a2d;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
}

.gradient-text {
    background: linear-gradient(90deg, #ff7a1f 0%, #ff8f3a 25%, #ff9e4f 50%, #ffb76a 75%, #ffd19c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffb3c1 100%);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '✨';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    opacity: 1;
    left: 16px;
    animation: sparkle 1s ease-in-out infinite;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5a8c 0%, #ff7e9a 50%, #ffa2b0 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4), 0 0 40px rgba(255, 107, 157, 0.2);
    padding-left: 44px;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    animation: none;
}

@keyframes sparkle {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4), 0 0 40px rgba(255, 107, 157, 0.2);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 107, 157, 0.5), 0 0 50px rgba(255, 107, 157, 0.3);
    }
}

.btn-secondary {
    background: #ffffff;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn-secondary::after {
    content: '💕';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: #ff6b9d;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3), 0 0 0 4px rgba(255, 107, 157, 0.1);
    padding-right: 44px;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover::after {
    transform: translateY(-50%) scale(1);
    right: 20px;
    animation: heartBeat 1s ease-in-out infinite;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

@keyframes heartBeat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    25% {
        transform: translateY(-50%) scale(1.2);
    }
    50% {
        transform: translateY(-50%) scale(1);
    }
    75% {
        transform: translateY(-50%) scale(1.15);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    opacity: 0.6;
}

.particle-heart {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.4;
    animation: floatHeart 6s ease-in-out infinite;
}

.particle-heart .pixel {
    fill: #ff4d8f;
}

.particle-heart:nth-child(1) {
    animation-delay: 0s;
}

.particle-heart:nth-child(2) {
    animation-delay: 1s;
}

.particle-heart:nth-child(3) {
    animation-delay: 2s;
}

.particle-heart:nth-child(4) {
    animation-delay: 3s;
}

.particle-heart:nth-child(5) {
    animation-delay: 4s;
}

.particle-heart:nth-child(6) {
    animation-delay: 5s;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-25px) rotate(-5deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.6;
    }
}

.side-left {
    position: fixed;
    left: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 500;
    color: #0d1a2d;
    letter-spacing: 2px;
}

.instagram-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #e08424 0%, #d65a2d 25%, #cc1e34 50%, #bc1557 75%, #ac0f79 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.discord-btn {
    width: 48px;
    height: 48px;
    background: #5865f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752c4;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.side-right {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: #0d1a2d;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #0d1a2d;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .side-left,
    .side-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .container {
        padding: 0 20px;
    }
}

.features-section {
    padding: 100px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0d1a2d;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #0d1a2d;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.stats-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    animation: fadeInUp 0.8s ease both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #0d1a2d;
    line-height: 1;
    min-width: 180px;
}

.stat-label {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.cta-section {
    padding: 100px 0;
    background: #f9fafb;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #0d1a2d;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    text-decoration: none;
}

.footer {
    background: #fafafa;
    padding: 120px 0 0;
    color: #0d1a2d;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff873f 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-heart {
    width: 36px;
    height: 36px;
    animation: heartbeat 2s ease-in-out infinite;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    color: #0d1a2d;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0d1a2d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-link:hover {
    color: #ff873f;
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid #e5e7eb;
    border-top: 1px solid #f3f4f6;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title,
    .cta-title {
        font-size: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    width: 92%;
    max-width: 1100px;
    height: 85vh;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid #f3f4f6;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    color: #0d1a2d;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    font-weight: 300;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.credits-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.credits-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 60px;
    text-align: center;
    color: #0d1a2d;
}

.modal.active .credits-scroll {
    animation: creditsRoll 35s linear forwards;
}

@keyframes creditsRoll {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.credits-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 100px;
    color: #0d1a2d;
    line-height: 1.1;
}

.credits-section {
    margin-bottom: 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 120px;
    padding: 0 60px;
}

.portfolio-item {
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid #f3f4f6;
}

.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.portfolio-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f9fafb;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-info {
    padding: 28px;
    text-align: left;
}

.portfolio-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0d1a2d;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.credits-final {
    margin-top: 140px;
    padding: 80px 0;
}

.credits-thank-you {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0d1a2d;
    line-height: 1;
}

.credits-tagline {
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 20px;
}

.credits-year {
    font-size: 18px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 90vh;
    }
    
    .credits-scroll {
        padding: 40px 30px;
    }
    
    .credits-title {
        font-size: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-info h3 {
        font-size: 20px;
    }
    
    .portfolio-info p {
        font-size: 14px;
    }
    
    .credits-thank-you {
        font-size: 48px;
    }
}
