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

body {
    background: #ffffff;
    color: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
}

.hero-title, .hero-subtitle, .scroll-indicator {
    position: relative;
    z-index: 1;
}

.content-section#about {
    background: linear-gradient(to bottom, #cccccc 0%, #999999 100%);
}

.content-section#socials {
    background: linear-gradient(to bottom, #999999 0%, #666666 100%);
}

.content-section#projects {
    background: linear-gradient(to bottom, #666666 0%, #0a0a0a 100%);
}

.content-section#pc-specs {
    background: linear-gradient(to bottom, #0a0a0a 0%, #0a0a0a 100%);
}

.content-section#projects .section-label,
.content-section#projects .section-title,
.content-section#socials .section-label,
.content-section#socials .section-title,
.content-section#pc-specs .section-label,
.content-section#pc-specs .section-title {
    color: #ffffff;
}

.content-section#projects .project-card {
    color: #0a0a0a;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #000000a1;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0a0a0a;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.content-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section.dark {
    color: #000000;
}

.content-section.dark .section-label,
.content-section.dark .section-title {
    color: #060606;
}

.about-content {
    display: block;
}

.birthday-countdown {
    margin-top: 2rem;
    width: 100%;
}

.countdown-display {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.countdown-display:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.countdown-text {
    color: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

.countdown-loading {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .birthday-countdown {
        margin-top: 1.5rem;
    }

    .countdown-display {
        padding: 1rem;
    }

    .countdown-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .countdown-display {
        padding: 0.75rem;
    }

    .countdown-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.complaint-container {
    background: #999;
    padding: 1rem;
    margin: 0;
}

.complaint {
    margin: 0;
    font-size: 0.75em;
    opacity: 0.9;
    font-style: italic;
    color: #909090;
    width: 100%;
    text-align: center;
    padding: 0;
}

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

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.6;
    font-weight: 600;
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 4rem;
    line-height: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.social-card {
    background: #e5e5e5;
    padding: 4rem 3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    border-radius: 24px;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section.dark .social-card::before {
    background: #0a0a0a;
}

.social-card:hover::before {
    transform: translateY(0);
}

.social-card:hover {
    transform: scale(1.02);
}

.social-icon {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    filter: invert(1) brightness(2);
}

.social-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    color: #0a0a0a;
}

.social-card:hover .social-text {
    color: #ffffff;
}

.social-username {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    color: #666;
    margin-top: 0.5rem;
}

.social-card:hover .social-username {
    color: #ffffff;
}



.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    grid-template-rows: auto auto auto;
}



.project-card {
    background: #e5e5e5;
    border-radius: 24px;
    padding: 3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover::before {
    transform: translateY(0);
}

.project-card:hover {
    transform: scale(1.02);
}

.project-number {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.project-card:hover .project-number,
.project-card:hover .project-title,
.project-card:hover .project-description {
    color: #ffffff;
}

.projects-grid .project-card.wide-last-card {
    grid-column: span 2;
    text-align: center;
}

footer {
    padding: 4rem 2rem;
    text-align: center;
    background: #0a0a0a;
    color: #ffffff;
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.8rem;
    }

    .content-section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .section-label {
        margin-bottom: 2rem;
        font-size: 0.8rem;
    }

    .complaint-container {
        padding: 0.75rem 1rem;
    }

    .complaint {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-card {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-text {
        font-size: 1rem;
    }

    .social-username {
        font-size: 0.8rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        grid-template-rows: auto;
    }

    .projects-grid .project-card:nth-child(5) {
        grid-column: span 1;
        text-align: left;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .project-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .project-number {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2rem, 14vw, 2.5rem);
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }

    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }

    .content-section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .section-label {
        margin-bottom: 1.5rem;
        font-size: 0.75rem;
    }

    .about-content h3 {
        font-size: 1rem;
        line-height: 1.6;
    }

    .complaint-container {
        padding: 0.5rem 1rem;
    }

    .complaint {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    .social-card {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-text {
        font-size: 0.95rem;
    }

    .social-username {
        font-size: 0.75rem;
    }

    .project-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .project-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .project-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .project-number {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    footer {
        padding: 2rem 1rem;
    }
}

.discord-presence {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.discord-presence:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.presence-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.discord-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.presence-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
    color: #0a0a0a;
}

.presence-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}



.presence-activity {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
    color: #0a0a0a;
    margin-top: 0.25rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-card {
    background: rgba(255, 255, 255);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.spec-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0a0a0a;
    opacity: 0.9;
    margin: 0;
}
