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

/* ===== Global Styles ===== */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Allow selection in inputs and textareas */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary: #ffffff;
    --secondary: #000000;
    --accent: #a3a3a3;
    --accent-green: #22c55e;
    --font-main: 'Orbitron', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sub);
    background-color: var(--secondary);
    color: var(--primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== Music Player Container ===== */
.music-player-container {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ===== Now Playing Widget (collapsed) ===== */
.now-playing {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 16px 4px 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    transition: all 0.3s ease;
    user-select: none;
}

.now-playing:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.now-playing:hover .now-playing-img {
    filter: grayscale(0);
}

.now-playing:hover .now-playing-label {
    color: #4ade80;
}

/* Thumbnail */
.now-playing-thumb {
    width: 40px;
    height: 40px;
    background: #1f2937;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.now-playing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.now-playing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Equalizer (mini) */
.equalizer {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 12px;
}

.eq-bar {
    width: 2px;
    background: #22c55e;
    border-radius: 1px;
    height: 4px;
    transition: height 0.2s ease;
}

.now-playing.paused .eq-bar {
    animation: none !important;
    height: 2px;
    background: #6b7280;
}

.now-playing.playing .eq-bar:nth-child(1) {
    animation: eqBounce1 1s ease-in-out infinite;
}

.now-playing.playing .eq-bar:nth-child(2) {
    animation: eqBounce2 1.2s ease-in-out infinite;
}

.now-playing.playing .eq-bar:nth-child(3) {
    animation: eqBounce3 0.8s ease-in-out infinite;
}

@keyframes eqBounce1 {
    0%, 100% { height: 4px; }
    50% { height: 12px; }
}

@keyframes eqBounce2 {
    0%, 100% { height: 8px; }
    50% { height: 3px; }
}

@keyframes eqBounce3 {
    0%, 100% { height: 6px; }
    50% { height: 11px; }
}

/* Info */
.now-playing-info {
    display: flex;
    flex-direction: column;
}

.now-playing-label {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.now-playing-title {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== Expanded Player Panel ===== */
.player-panel {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.player-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.player-panel.paused .player-status-dot {
    background: #6b7280;
    animation: none;
}

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

.player-header-label {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.player-collapse-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.player-collapse-btn:hover {
    color: #ffffff;
}

.player-collapse-btn svg {
    transition: transform 0.3s ease;
}

.player-panel.open .player-collapse-btn svg {
    transform: rotate(180deg);
}

/* Body */
.player-body {
    padding: 20px;
}

/* Song Info */
.player-song {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.player-album-art {
    width: 80px;
    height: 80px;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.player-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.player-album-art:hover img {
    filter: grayscale(0);
}

.player-album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.player-album-art:hover .player-album-overlay {
    background: transparent;
}

.player-song-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.player-song-title {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-song-artist {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

/* Player EQ bars */
.player-eq-bars {
    display: flex;
    gap: 2px;
    margin-top: 8px;
}

.player-eq-bar {
    width: 2px;
    height: 12px;
    background: rgba(34, 197, 94, 0.5);
    animation: playerEqPulse 1.5s ease-in-out infinite;
}

.player-panel.paused .player-eq-bar {
    animation: none;
    background: rgba(107, 114, 128, 0.3);
}

@keyframes playerEqPulse {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Progress */
.player-progress-group {
    margin-bottom: 24px;
}

.player-time {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.player-progress-bar {
    position: relative;
    height: 4px;
    background: #1f2937;
    width: 100%;
    cursor: pointer;
}

.player-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #22c55e;
    transition: width 0.1s linear;
}

.player-progress-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

/* Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-volume-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-volume-icon {
    color: #6b7280;
    flex-shrink: 0;
}

.player-volume-bar {
    position: relative;
    width: 60px;
    height: 4px;
    background: #1f2937;
}

.player-volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #22c55e;
}

.player-volume-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.player-play-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.player-play-btn:hover {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.player-play-btn:hover svg {
    color: #4ade80;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===== Banner ===== */
.banner-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.banner-columns {
    display: flex;
    width: 120%;
    height: 120%;
    gap: 6px;
    z-index: 0;
    transform: rotate(-3deg) translate(-5%, -5%);
}

.banner-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.banner-col-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    will-change: transform;
}

.banner-col-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    filter: grayscale(20%) contrast(1.1);
    border: 3px solid rgba(255, 255, 255, 0.25);
}

/* Scroll up animation */
.banner-col-up .banner-col-inner {
    animation: scrollUp 25s linear infinite;
}

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

/* Scroll down animation */
.banner-col-down .banner-col-inner {
    animation: scrollDown 25s linear infinite;
}

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

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

@media (min-width: 768px) {
    .banner-overlay {
        background: rgba(0, 0, 0, 0.65);
    }
}

/* ===== Center Content ===== */
.center-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    animation: fadeInUp 1s ease forwards;
}

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

/* ===== Logo Image ===== */
.logo-image {
    width: clamp(200px, 45vw, 450px);
    height: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
}

/* ===== Gang Name ===== */
.gang-name {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--primary);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
    width: 0;
    animation: typeWriteLoop 6s steps(8, end) infinite, cursorBlink 0.6s step-end infinite alternate;
}

@keyframes typeWriteLoop {
    0% { width: 0; }
    25% { width: 100%; }
    50% { width: 100%; }
    75% { width: 0; }
    100% { width: 0; }
}

@keyframes cursorBlink {
    0% { border-color: #fff; }
    50% { border-color: transparent; }
}

/* ===== Gang Description ===== */
.gang-description {
    font-family: var(--font-main);
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ===== Gang Divider ===== */
.gang-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.25rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.gang-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    position: relative;
}

.gang-divider-line:first-child {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

.gang-divider-line:last-child {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        transparent 100%
    );
}

.gang-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ===== Founder Link ===== */
.founder-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 14px 36px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
}

.founder-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.founder-link:active {
    transform: scale(0.97);
}

.founder-text {
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.founder-link:hover .founder-text {
    color: var(--accent-green);
}

.founder-role {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.founder-link:hover .founder-role {
    color: var(--accent-green);
}

/* ===== Member Page ===== */
body {
    margin: 0;
    padding: 0;
    background: #000;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

.member-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 6rem 2rem 3rem;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .member-main {
        padding: 6rem 3rem 3rem;
    }
}

.member-title-area {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-title-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.member-title-link:hover {
    transform: scale(1.02);
}

.member-page-title {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
    width: 0;
    margin: 0 auto;
    animation: typeWriteLoop 6s steps(13, end) infinite, cursorBlink 0.6s step-end infinite alternate;
}

.member-page-subtitle {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.member-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
}

.member-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.25);
}

.search-box svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.search-db-input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    width: 100%;
    text-transform: uppercase;
}

.search-db-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.filter-tag input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
}

.filter-tag input:checked {
    background: var(--accent-green);
    border-color: var(--accent-green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 80% 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.section-count {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* ===== Member Cards ===== */
.member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

@media (max-width: 400px) {
    .member-grid {
        grid-template-columns: 1fr;
    }
}

.member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmerLoop 4s infinite ease-in-out;
}

@keyframes shimmerLoop {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.member-card:hover::after {
    animation-duration: 1.5s;
}

.member-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.member-card.hidden {
    display: none;
}

.card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.card-badge svg {
    color: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 10px;
}

.card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

.card-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.3);
    text-transform: none;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.ig-icon-small {
    color: rgba(255, 255, 255, 0.3);
}

.ig-icon-small svg {
    fill: currentColor;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 360px;
    position: relative;
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fff;
}

.modal-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-name {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.modal-role {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.modal-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
}

.modal-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.modal-link-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.site-footer {
    text-align: center;
    padding: 1.25rem;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-footer a:hover {
    opacity: 0.7;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== Selection ===== */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .center-content {
        padding: 1.5rem;
    }

    .social-links {
        margin-top: 1rem;
    }

    .founder-link {
        margin-top: 1.5rem;
    }
}
