/* =========================================
   Amsterdam Roleplay - Main Stylesheet
   Modern Gaming Design v2.0
   ========================================= */

/* CSS Variables */
:root {
    --bg-dark: #08080c;
    --bg-card: #0d0d12;
    --bg-card-hover: #121218;
    --primary: #e63946;
    --primary-dark: #c62836;
    --primary-light: #ff4d5a;
    --primary-glow: rgba(230, 57, 70, 0.4);
    --secondary: #ffd60a;
    --accent: #4cc9f0;
    --text: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-glow: linear-gradient(135deg, var(--primary), #ff6b6b);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a, button, input, textarea, select {
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none !important;
}

a:hover, a:focus, a:active {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    left: 0;
    top: 0;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.cursor.active {
    transform: scale(0.8);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(230, 57, 70, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    left: 0;
    top: 0;
    transition: border-color 0.3s ease;
}

.cursor-follower.active {
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none !important; }
    body, a, button, input, textarea, select { cursor: auto !important; }
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-bg {
    position: absolute;
    inset: 0;
}

.loader-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(230, 57, 70, 0.15), transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(76, 201, 240, 0.08), transparent 50%);
}

.loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.loader-logo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loaderSpin 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 1.5s;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: rgba(230, 57, 70, 0.5);
    animation-duration: 2s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: rgba(230, 57, 70, 0.3);
    animation-duration: 2.5s;
}

@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 16px;
    padding: 8px;
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 50px rgba(230, 57, 70, 0.5);
    }
}

.loader-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--text);
}

.loader-title span {
    color: var(--primary);
    font-weight: 700;
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    position: relative;
}

.loader-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ff6b6b, var(--primary));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading 1.8s ease-in-out forwards, progressShine 1s linear infinite;
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes progressShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loader-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #ff6b6b, var(--primary-light), var(--primary));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 12px;
    padding: 6px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.25);
    transition: var(--transition);
}

.nav-logo:hover img {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.6rem 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .nav-links, .nav-btn { display: none; }
    .nav-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 12, 0.98);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 0.5rem;
    }
    
    .nav.mobile-open .nav-links {
        display: flex;
    }
    
    .nav.mobile-open .nav-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav.mobile-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .nav.mobile-open .nav-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(230, 57, 70, 0.2), transparent 50%),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(230, 57, 70, 0.1), transparent 40%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(76, 201, 240, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 214, 10, 0.05), transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Glow Orbs */
.hero-glow-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4), transparent 60%);
    top: -15%;
    right: -10%;
    animation-duration: 8s;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.25), transparent 60%);
    bottom: -10%;
    left: -10%;
    animation-duration: 10s;
    animation-delay: -3s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.2), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 12s;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.05); }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 20%;
    animation: floatRotate 20s linear infinite;
}

.fs-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-duration: 20s;
}

.fs-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    border-color: rgba(76, 201, 240, 0.15);
    animation-duration: 25s;
    animation-direction: reverse;
}

.fs-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    border-color: rgba(255, 214, 10, 0.15);
    animation-duration: 18s;
}

.fs-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: -5s;
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-30px); }
    100% { transform: rotate(360deg) translateY(0); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
        border-color: rgba(230, 57, 70, 0.3);
    }
    50% { 
        box-shadow: 0 0 35px rgba(230, 57, 70, 0.4);
        border-color: rgba(230, 57, 70, 0.5);
    }
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    position: relative;
    z-index: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.title-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-main .text-gradient {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    background-size: 200% auto;
    animation: textGradient 4s ease-in-out infinite;
}

@keyframes textGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-rp {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: 4px;
    opacity: 0.9;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text);
    box-shadow: 0 4px 25px var(--primary-glow);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-primary:hover .btn-bg {
    opacity: 1;
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.stat-num::after {
    content: '+';
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

@media (max-width: 600px) {
    .hero-stats { gap: 2rem; }
    .stat-divider { display: none; }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--border-hover);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -10%;
    right: -5%;
    animation: shape1 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: -5%;
    animation: shape2 20s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 40%;
    left: 50%;
    animation: shape3 18s ease-in-out infinite;
}

@keyframes shape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes shape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(0.9); }
}

@keyframes shape3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-50%, 30px) scale(1.2); }
}

/* Animate In */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-in:nth-child(1) { transition-delay: 0.1s; }
.animate-in:nth-child(2) { transition-delay: 0.2s; }
.animate-in:nth-child(3) { transition-delay: 0.3s; }
.animate-in:nth-child(4) { transition-delay: 0.4s; }
.animate-in:nth-child(5) { transition-delay: 0.5s; }

/* Sections */
section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-xl);
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), transparent);
    animation: tagShine 3s infinite;
}

@keyframes tagShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-card));
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.about-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at 50% 0%, rgba(230, 57, 70, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.about-card:hover .card-icon::before {
    opacity: 1;
}
}

.about-card:hover .card-icon svg {
    color: white;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Section */
.features {
    overflow: hidden;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }
}

.feature-main {
    display: flex;
    justify-content: center;
}

.feature-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.visual-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.visual-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    animation-delay: 0.5s;
}

.visual-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.visual-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(230, 57, 70, 0.4);
    background: var(--bg-card-hover);
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.5;
    min-width: 50px;
}

.feature-item:hover .feature-num {
    opacity: 1;
}

.feature-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-arrow {
    margin-right: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--primary);
}

.feature-item:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Team Section */
.team {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-card));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(230, 57, 70, 0.15);
}

.card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(230, 57, 70, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
    pointer-events: none;
}

.team-card:hover .card-bg {
    opacity: 1;
}

.member-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
}

.team-card:hover .avatar-ring {
    opacity: 1;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-card));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder svg {
    width: 50px;
    height: 50px;
    color: var(--text-muted);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.team-card:hover .avatar-img {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
    transform: scale(1.05);
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.member-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(230, 57, 70, 0.15), transparent 60%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.cta-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
    padding: 6px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.25);
    transition: var(--transition);
}

.footer-logo:hover img {
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand > p {
    color: var(--text-muted);
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

@media (max-width: 500px) {
    .footer-links {
        gap: 2rem;
    }
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    padding: 0.4rem 0;
    transition: var(--transition);
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(-5px);
    text-decoration: none !important;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
}

/* Magnetic Effect */
.magnetic {
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-num { font-size: 2rem; }
}
