/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
}

.main_logo {
    margin: 0;
    margin-left: 10rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.main_logo img {
    height: 120px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main_logo img:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.html-button {
    text-decoration: none;
    display: inline-block;
}

.nav-button {
    font-family: 'Red Hat Display', sans-serif !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    outline: 1px solid transparent;
    outline-offset: 2px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-button:hover::before {
    width: 300px;
    height: 300px;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: 2px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-button:active {
    transform: translateY(0);
}

.subnav {
    position: relative;
}

.subnav-content {
    display: none;
    position: absolute;
    top: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.subnav:hover .subnav-content {
    display: block;
}

.subnav-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.subnav-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu */
.side-menu {
    display: none;
}

.hamb {
    display: none;
    cursor: pointer;
}

.hamb-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Content Container */
.content_container {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    overflow-x: hidden;
    width: 100%;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Servers container için özel - content dışına taşıyor */
#servers {
    margin: 2rem 0 !important;
}

/* Main Section */
.main_section {
    text-align: center;
    padding: 4rem 0;
}

.mid_part {
    margin: 2rem 0;
}

.mid_part .logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.info_top h2 {
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Titles */
.section_title {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.section_subtitle {
    display: block;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* People Section */
.last_section {
    padding: 4rem 0;
}

.people {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.person-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.person-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.person-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.person-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo-container img.cn {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .main_logo img {
        height: 40px;
    }

    .hamb {
        display: block;
    }

    .nav {
        display: none;
    }

    .side-menu:checked ~ .nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
    }

    .mid_part .logo {
        max-width: 300px;
    }

    .info_top h2 {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Server Card Styles */
#servers {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 2rem 0 !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
}

.server-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 1000px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    background-image: url('https://wallpapers.com/images/hd/scp-facility-monochrome-q8a4bdb4jne89gn1.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}



/* Blur efekti - artık server-content-blur kullanılıyor */

/* Blur alanı */
.server-content-blur {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* İçerik - blur'un içinde */
.server-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Logo */
.server-logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.server-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding-left: 2rem;
}

.server-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.server-name-logo {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.server-logo-blur {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}

.server-description {
    color: #fff;
    font-size: 1.1rem;
    margin: 2rem 0 0 0;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    max-width: 800px;
    padding-left: 2rem;
}

.server-status-text {
    color: #fff;
    font-size: 1rem;
    margin: 1rem 0 0 0;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding-left: 2rem;
}

.server-players {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.server-join-btn {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-join-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

