/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(240, 208, 96, 0.15);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}
.nav-logo img {
    height: 40px;
    width: auto;
}
.nav-logo h1 {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--gold-primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}
.nav-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Page Layout */
html, body {
    margin: 0 !important;
    padding: 0;
    overflow-x: hidden;
}
body {
    padding-top: 80px !important;
    display: flex !important;
    flex-direction: column;
    min-height: 100vh;
}

.site-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
    flex: 1;

    position: relative;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}
.hero h1 {
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}
.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Team Cards Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.team-card-public {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-card-public:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.team-card-public img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--glass-border);
}
.team-card-public h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.team-card-public p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
.player-card-public {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}
.player-card-public:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}
.player-number-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-primary);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.player-card-public img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--glass-border);
}
.player-card-public h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.player-card-public p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Skeleton Loading */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.skeleton-card {
    pointer-events: none;
}

.skeleton-circle {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 50%;
}

.skeleton-line {
    height: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Apply Types */
.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.apply-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}
.apply-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 208, 96, 0.1);
}
.apply-card i {
    color: var(--gold-primary);
    margin-bottom: 20px;
}
.apply-card h2 {
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}
.apply-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .apply-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
}

/* Footer */
.site-footer {
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 25px 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 400px;
    width: 100%;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    text-align: center;
    align-items: center;
}

.footer-item i {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
}

.footer-link {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}
/* 3D Model Viewers */
.model-wrap-1, .model-wrap-2, .model-wrap-3 {
    position: absolute;
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
    z-index: 0;
}

.model-wrap-1 {
    top: -5%;
    left: -10%;
    width: 350px;
    height: 350px;
}

.model-wrap-2 {
    top: 40%;
    right: -15%;
    width: 450px;
    height: 450px;
}

.model-wrap-3 {
    bottom: -10%;
    left: 5%;
    width: 250px;
    height: 250px;
}

.model-bg-1, .model-bg-2, .model-bg-3 {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(240, 208, 96, 0.15)) contrast(1.05);
}

/* Floating Animations */
@keyframes float1 {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float2 {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(15px) translateX(-15px); }
    100% { transform: translateY(0px) translateX(0px); }
}

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

.model-bg-1 { animation: float1 7s ease-in-out infinite; }
.model-bg-2 { animation: float2 8s ease-in-out infinite; }
.model-bg-3 { animation: float3 6s ease-in-out infinite; }

/* Slide out animation classes for wrappers */
.model-wrap-1.slide-out {
    transform: translateX(-100vw) rotate(-45deg);
    opacity: 0;
}
.model-wrap-2.slide-out {
    transform: translateX(100vw) rotate(45deg);
    opacity: 0;
}
.model-wrap-3.slide-out {
    transform: translateY(100vh) rotate(45deg);
    opacity: 0;
}

@media (max-width: 768px) {
    .model-wrap-1 {
        top: 2%;
        left: -15%;
        width: 150px;
        height: 150px;
    }
    
    .model-wrap-2 {
        top: 45%;
        right: -20%;
        width: 180px;
        height: 180px;
    }

    .model-wrap-3 {
        bottom: 5%;
        left: -15%;
        width: 130px;
        height: 130px;
    }
    
    .model-bg-1 { opacity: 0.6; }
    .model-bg-2 { opacity: 0.5; }
    .model-bg-3 { opacity: 0.4; }
}
