/* ============================================
   GameLiminals Club – Adamas University
   Style Sheet (extracted + white hero + responsive)
   ============================================ */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Josefin+Sans:wght@300;400;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── Variables ─── */
:root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --white-pure: #ffffff;
    --blue: #2e87cc;
    --blue-dark: #0a839e;
    --purple: #9b59b6;
    --accent: #e8ff3c;
    --gray: #1c1c1c;
    --primary-color: #4a6fff;
    --secondary-color: #ff6b6b;
    --nav-height: 72px;
    --border-color: #e0e0e0;
    --shadow-light: 0 5px 20px rgba(38, 136, 255, 0.445);
    --shadow-medium: 0 10px 30px rgba(255, 23, 147, 0.492);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background: var(--white-pure);
    color: var(--black);
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 3px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text .uni-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--black);
    line-height: 1;
}

.nav-logo-text .gameliminals-tag {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(10, 10, 10, 0.55);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Join Button */
.btn-join {
    background: var(--blue);
    color: var(--white-pure);
    border: none;
    padding: 10px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.btn-join:hover {
    background: var(--black);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
}

/* ============================================
   HERO SECTION — WHITE BACKGROUND
   ============================================ */
#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: var(--white-pure);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(315deg, rgb(241, 244, 255), rgb(141, 117, 216));
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 135, 204, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 135, 204, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 32px;

    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(46, 135, 204, 0.2));
    animation: fadeUp 0.8s 0.1s ease both;
    position: relative;
    z-index: 1;

}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    color: var(--black);
    clip-path: inset(0 100% 0 0);
    animation: clipReveal 1s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--blue);
    display: inline-block;
    opacity: 0;
    animation: fadeUp 0.6s 1s ease forwards;
}

.hero-since {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.681);
    margin-top: 12px;
    animation: fadeUp 0.8s 0.3s ease both;
    position: relative;
    z-index: 1;
}

.hero-description {
    max-width: 560px;
    margin: 28px auto 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.55);
    animation: fadeUp 0.8s 0.4s ease both;
    position: relative;
    z-index: 1;

}

.hero-cta {
    margin-top: 48px;
    animation: fadeUp 0.8s 0.5s ease both;
    position: relative;
    z-index: 1;

}

.hero-cta .btn-join {
    font-size: 1.2rem;
    padding: 14px 40px;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgb(10, 10, 10);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--blue), transparent);
}

/* ─── Animations ─── */
@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
    padding: 100px 48px;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--black);
}

.section-title em {
    font-style: italic;
    color: var(--blue);
}

/* ============================================
   COMMUNITY PARTNERS
   ============================================ */
#partners {
    background: var(--white);
    color: var(--black);
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

#partners::before {
    content: 'PARTNERS';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(0, 0, 0, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

#partners .section-label {
    color: var(--blue-dark);
}

.partners-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 60px;
    justify-content: center;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
    border-radius: 16px;
}

.partner-card:hover {
    transform: translateY(-8px);
}

.partner-img-wrap {
    width: 160px;
    height: 160px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.partner-card:hover .partner-img-wrap {
    box-shadow: 0 12px 40px rgba(46, 135, 204, 0.2);
    border-color: var(--blue);
}

.partner-img-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    text-align: center;
}

/* ============================================
   TERMS & CONDITIONS
   ============================================ */
#terms {
    background: var(--white-pure);
    color: var(--black);
    padding: 0;
}

.terms-header {
    background: linear-gradient(to bottom right, #7A7FBA, #11C37C);
    padding: 80px 48px 60px;
    position: relative;
    overflow: hidden;
}

.terms-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.terms-header .big-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    color: white;

    letter-spacing: 2px;
}

.terms-header .subtitle {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.7;
}

.terms-body {
    padding: 80px 48px;
    background: white;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.terms-section {
    margin-bottom: 56px;
    border-left: 3px solid var(--blue);
    padding-left: 28px;
}

.terms-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.terms-section p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 10px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Category Tags */
.terms-category {
    margin-bottom: 8px;
    margin-top: 16px;
}

.terms-category:first-child {
    margin-top: 0;
}

.category-tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-dark);
    background: rgba(46, 135, 204, 0.08);
    border: 1px solid rgba(46, 135, 204, 0.15);
    padding: 6px 16px;
    border-radius: 4px;
}

/* ─── Glitch Text Hover (subtle gaming effect) ─── */
.glitch-text {
    position: relative;
}

.glitch-text:hover {
    animation: glitch 0.4s ease;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -1px);
    }

    60% {
        transform: translate(-1px, -2px);
    }

    80% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(0);
    }
}

/* ─── Scanline Overlay for Privacy & Terms ─── */
.terms-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

/* Privacy Section Header Gradient */
#privacy .terms-header {
    background: linear-gradient(to bottom right, #2e87cc, #9b59b6);
}

#privacy .category-tag {
    color: var(--purple);
    background: rgba(155, 89, 182, 0.08);
    border: 1px solid rgba(155, 89, 182, 0.15);
}

#privacy .terms-section {
    border-left: 3px solid var(--purple);
}

#privacy .terms-section h3 {
    color: var(--purple);
}

/* ============================================
   REPORT AN ISSUE
   ============================================ */
#report {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

#report::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(155, 89, 182, 0.15), transparent 70%);
}

.report-card {
    background: white;
    color: var(--black);
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 8px 8px 2px var(--black);
    position: relative;
    z-index: 1;
}

.report-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--black);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border-right: 7px solid #000;
    border-bottom: 7px solid #000;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    background: white;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.btn-submit {
    background: var(--black);
    color: white;
    border: none;
    padding: 14px 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 50px;
    float: right;
    transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form status messages */
.form-status {
    margin-top: 16px;
    clear: both;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-status.error {
    display: block;
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 48px 32px;
    color: rgba(245, 245, 240, 0.5);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a:not(.social-link) {
    display: block;
    font-size: 0.82rem;
    line-height: 2;
    color: rgba(245, 245, 240, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--blue);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(245, 245, 240, 0.5);
    font-size: 1rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Platform-specific hover colors */
.social-link[title="Discord"]:hover {
    border-color: #5865F2;
    color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
}

.social-link[title="GitHub"]:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.social-link[title="Instagram"]:hover {
    border-color: #E4405F;
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-link[title="LinkedIn"]:hover {
    border-color: #0A66C2;
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
}

.social-link[title="Facebook"]:hover {
    border-color: #1877F2;
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-link[title="YouTube"]:hover {
    border-color: #FF0000;
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Directional slide-in for terms sections */
.slide-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-from-left.visible,
.slide-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: rgba(46, 135, 204, 0.06);
    color: var(--blue);
}

.mobile-menu .btn-join {
    margin-top: 12px;
    width: auto;
}

/* ============================================
   RESPONSIVE — 992px+ (Desktop)
   ============================================ */
@media (min-width: 993px) {
    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE — 769px to 992px (Tablet Landscape)
   ============================================ */
@media (max-width: 992px) {
    .navbar {
        padding: 0 32px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    section {
        padding: 80px 32px;
    }

    #home {
        padding: 100px 32px 80px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE — 481px to 768px (Tablet Portrait)
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-right .btn-join {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 20px;
        max-width: 100vw;
    }

    #home {
        padding: 100px 20px 70px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .partners-grid {
        gap: 32px;
    }

    .partner-img-wrap {
        width: 140px;
        height: 140px;
    }

    .partner-img-wrap img {
        width: 80px;
        height: 80px;
    }

    .terms-header {
        padding: 60px 24px 50px;
        overflow: hidden;
    }

    .terms-body {
        padding: 60px 24px;
    }

    .slide-from-left {
        transform: translateX(-30px);
    }

    .slide-from-right {
        transform: translateX(30px);
    }

    .report-card {
        padding: 36px 28px;
    }

    .report-card h2 {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    footer {
        padding: 48px 24px 28px;
    }
}

/* ============================================
   RESPONSIVE — 361px to 480px (Mobile Large)
   ============================================ */
@media (max-width: 480px) {
    .navbar {
        padding: 0 16px;
        height: 62px;
    }

    .nav-logo img {
        width: 36px;
        height: 36px;
    }

    .nav-logo-text .uni-name {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-logo-text .gameliminals-tag {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .category-tag {
        font-size: 0.62rem;
        padding: 5px 12px;
    }

    section {
        padding: 60px 16px;
        max-width: 100vw;
    }

    #home {
        padding: 90px 16px 60px;
    }

    .hero-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 4px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-cta .btn-join {
        font-size: 1rem;
        padding: 12px 32px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .partners-grid {
        gap: 24px;
    }

    .partner-img-wrap {
        width: 120px;
        height: 120px;
    }

    .partner-img-wrap img {
        width: 70px;
        height: 70px;
    }

    .partner-name {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .terms-header {
        overflow: hidden;
    }

    .terms-header .big-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .terms-section {
        padding-left: 18px;
    }

    .terms-section h3 {
        font-size: 1.4rem;
    }

    .slide-from-left {
        transform: translateX(-20px);
    }

    .slide-from-right {
        transform: translateX(20px);
    }

    .report-card {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .report-card h2 {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 28px;
    }

    .btn-submit {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .footer-brand .name {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESPONSIVE — up to 360px (Mobile Small)
   ============================================ */
@media (max-width: 360px) {
    .navbar {
        padding: 0 12px;
        height: 58px;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo img {
        width: 32px;
        height: 32px;
    }

    .nav-logo-text .uni-name {
        font-size: 0.78rem;
    }

    .nav-logo-text .gameliminals-tag {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    #home {
        padding: 80px 12px 50px;
    }

    .hero-eyebrow {
        font-size: 0.52rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-since {
        font-size: 0.65rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    section {
        padding: 50px 12px;
        max-width: 100vw;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .partner-img-wrap {
        width: 100px;
        height: 100px;
    }

    .partner-img-wrap img {
        width: 60px;
        height: 60px;
    }

    .terms-header {
        padding: 50px 16px 40px;
        overflow: hidden;
    }

    .terms-header .big-title {
        font-size: clamp(2.5rem, 14vw, 4rem);
        word-break: break-word;
    }

    .terms-body {
        padding: 40px 16px;
    }

    .slide-from-left {
        transform: translateX(-15px);
    }

    .slide-from-right {
        transform: translateX(15px);
    }

    .report-card {
        padding: 24px 14px;
    }

    footer {
        padding: 40px 16px 24px;
    }

    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .category-tag {
        font-size: 0.58rem;
        padding: 4px 10px;
        letter-spacing: 1px;
    }

    .footer-bottom {
        font-size: 0.62rem;
    }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: white;
    padding: 48px;
    border-radius: 32px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-modal-overlay.active .success-modal-content {
    transform: scale(1) translateY(0);
}

/* Success Checkmark Animation */
.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    font-size: 3.5rem;
    position: relative;
}

.success-checkmark i {
    animation: checkmarkScale 0.6s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes checkmarkScale {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--black);
}

.success-modal-content p {
    font-size: 1rem;
    color: rgba(10, 10, 10, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-modal-close {
    background: var(--black);
    color: white;
    border: none;
    padding: 16px 48px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-modal-close:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 135, 204, 0.3);
}

@media (max-width: 480px) {
    .success-modal-content {
        padding: 32px 24px;
    }
    .success-modal-content h3 {
        font-size: 2.2rem;
    }
}