* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0d0b09;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: -100px;
    left: -100px;
    width: 650px;
    height: 650px;
    /* Cache-busting URL to force fresh load of the original high-quality JPG */
    background: url('/images/geyik.jpg') no-repeat bottom left;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    /* The only 100% reliable way to remove white background from a JPG in CSS */
    filter: invert(1) brightness(0.6) sepia(1) hue-rotate(-20deg) saturate(2.5) contrast(1.5);
    mix-blend-mode: screen; 
    transition: opacity 0.5s ease;
}

/* Ensure sections are transparent so they don't block the body-level mascot */
section, .hero-content, .about-content, .team-container, .partners-container, .social-container {
    position: relative;
    z-index: 2; /* Content always on top of mascot */
}

@media (max-width: 768px) {
    body::after {
        width: 300px;
        left: -120px;
        opacity: 0.08;
    }
}

/* Preloader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0b09;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    height: 120px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loading-bar {
    width: 150px;
    height: 4px;
    background-color: rgba(226, 202, 170, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, transparent, #E2CAAA, transparent);
    animation: loadingAnim 1.5s infinite ease-in-out;
    border-radius: 4px;
}

@keyframes loadingAnim {
    0% {
        left: -100%;
        width: 100%;
    }
    50% {
        left: 0;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(13, 11, 9, 0.6), rgba(13, 11, 9, 0.8)), 
                url('/images/bg.png') center/cover no-repeat;
    background-color: #1a1510;
    display: flex;
    flex-direction: column;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 100;
}

.logo {
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(226, 202, 170, 0.2);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.nav-links a:hover {
    color: #E2CAAA;
    text-shadow: 0 0 10px rgba(226, 202, 170, 0.5);
}

.nav-btn {
    background-color: transparent !important;
    background: linear-gradient(135deg, #E2CAAA, #a48253) !important;
    padding: 12px 28px;
    border-radius: 30px;
    color: #ffffff !important;
    font-weight: 700 !important;
    border: 1px solid rgba(226,202,170,0.3);
    box-shadow: 0 4px 15px rgba(226, 202, 170, 0.3);
    transition: all 0.3s ease !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 202, 170, 0.6);
    background: linear-gradient(135deg, #f2dabd, #b08c5a) !important;
}

.lang-btn {
    background: transparent;
    color: #f0f0f0;
    border: 1px solid rgba(226, 202, 170, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(226, 202, 170, 0.2);
    color: #E2CAAA;
    box-shadow: 0 0 10px rgba(226, 202, 170, 0.4);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding-top: 80px;
}

.title-wrapper {
    filter: drop-shadow(0 0 40px rgba(226, 202, 170, 0.4));
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-size: 8vw;
    font-weight: 900;
    letter-spacing: 2vw;
    margin-right: -2vw;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #E2CAAA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    color: #e6dfd5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 16px 45px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.15rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: transparent;
    background: linear-gradient(135deg, #E2CAAA, #a48253);
    color: #1a1510;
    box-shadow: 0 5px 20px rgba(226, 202, 170, 0.4);
    border: 1px solid rgba(226,202,170,0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(226, 202, 170, 0.7);
    background: linear-gradient(135deg, #f2dabd, #b08c5a);
}

.btn-outline {
    background-color: transparent;
    color: #E2CAAA;
    border: 1px solid rgba(226, 202, 170, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline:hover {
    border-color: #E2CAAA;
    background-color: rgba(226, 202, 170, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

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

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

@media (max-width: 1200px) {
    .main-title {
        font-size: 9vw;
        letter-spacing: 1.5vw;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .main-title {
        font-size: 4.5rem;
        letter-spacing: 0.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
    }
    .action-buttons {
        gap: 1rem;
    }
    .btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
        width: 80%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .main-title {
        font-size: 3.5rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    background-color: transparent; /* Changed from solid color */
}

.about-content {
    flex: 1;
    max-width: 700px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a9a9a9;
    margin-bottom: 1.5rem;
}

.about-content p strong {
    color: #f0f0f0;
    font-weight: 600;
}

.about-btn {
    display: inline-block;
    margin-top: 1.5rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 0 30px rgba(226, 202, 170, 0.2));
    border-radius: 50%; /* Just in case */
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 5rem 4%;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
}

/* Map Section Styles */
.map-section {
    padding: 6rem 4%;
    background-color: transparent; /* Changed from solid color */
    text-align: center;
}

.map-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 202, 170, 0.1);
    border: 1px solid rgba(226, 202, 170, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    .map-title {
        font-size: 2rem;
    }
}
/* Team Section Styles */
.team-section {
    padding: 6rem 4%;
    background: transparent; /* Changed from solid gradient */
    text-align: center;
}

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

.team-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(26, 21, 16, 0.4);
    border: 1px solid rgba(226, 202, 170, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: rgba(226, 202, 170, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 202, 170, 0.1);
    background: rgba(26, 21, 16, 0.7);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #E2CAAA, #a48253);
    box-shadow: 0 0 20px rgba(226, 202, 170, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1a1510;
}

.member-info h3 {
    color: #E2CAAA;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.member-info p {
    color: #a9a9a9;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .team-section {
        padding: 4rem 4%;
    }
}

/* Partners Section */
.partners-section {
    padding: 6rem 4%;
    background: #0d0b09;
    text-align: center;
}

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

.partners-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-card {
    background: rgba(26, 21, 16, 0.4);
    border: 1px solid rgba(226, 202, 170, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 250px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(226, 202, 170, 0.3);
    background: rgba(26, 21, 16, 0.6);
}

.partner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(226, 202, 170, 0.4));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(226, 202, 170, 0.6));
}

.partner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-btn.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.partner-btn.discord:hover {
    background: #5865F2;
    color: white;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.partner-btn.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.partner-btn.youtube:hover {
    background: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.partner-btn.truckersmp {
    background: rgba(226, 202, 170, 0.1);
    color: #E2CAAA;
    border: 1px solid rgba(226, 202, 170, 0.3);
}

.partner-btn.truckersmp:hover {
    background: #E2CAAA;
    color: #1a1510;
    box-shadow: 0 5px 15px rgba(226, 202, 170, 0.4);
}

.partner-btn.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.partner-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.partner-btn.tiktok {
    background: rgba(255, 255, 255, 0.05);
    color: #00f2ea;
    border: 1px solid rgba(255, 0, 80, 0.5);
}

.partner-btn.tiktok:hover {
    background: #000000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.6);
}

.partner-btn.other {
    background: rgba(255, 255, 255, 0.05);
    color: #a9a9a9;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-btn.other:hover {
    background: #a9a9a9;
    color: #1a1510;
}

.partner-card p {
    color: #f0f0f0;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Social Media Section */
.social-section {
    padding: 6rem 4% 8rem;
    background: transparent; /* Changed from solid gradient */
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(226, 202, 170, 0.05);
}

.social-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #f0f0f0;
    letter-spacing: 0.15rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-card {
    width: 90px;
    height: 90px;
    background: rgba(26, 21, 16, 0.6);
    border: 1px solid rgba(226, 202, 170, 0.1);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.social-card i {
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-card.tmp:hover {
    background: rgba(226, 202, 170, 0.15);
    border-color: rgba(226, 202, 170, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(226, 202, 170, 0.2);
    color: #E2CAAA;
}

.social-card.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.social-card.discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(88, 101, 242, 0.2);
    color: #5865F2;
}

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

@media (max-width: 768px) {
    .social-section {
        padding: 4rem 4%;
    }
    .social-card {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    .social-links {
        gap: 25px;
    }
    .partners-title {
        font-size: 2rem;
    }
    .social-title {
        font-size: 1.8rem;
    }
}