:root {
    --primary: #00b4d8;
    --primary-dark: #0096c7;
    --primary-light: #90e0ef;
    --dark: #0a0a1a;
    --darker: #070712;
    --light: #ffffff;
    --light-gray: #e0e0e0;
    --gray: #6c757d;
    --dark-gray: #1a1a2e;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.logo-with-text {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40px; 
    position: relative;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0 auto 0 40px;
    height: 100%;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--dark);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--light);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(0, 180, 216, 0.1);
    color: #00b4d8;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 8px 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: auto;
    position: relative;
    min-width: 200px;
}

.search-box:focus-within {
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.5);
}

.search-box i {
    color: var(--gray);
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--light);
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-shortcut {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 8px;
    color: var(--gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker);
    padding: 40px 0;
    color: var(--light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-copyright p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: left;
}

.copyright {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: flex-end;
}

.social-link {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

.about-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.made-by {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    top: 1px;
}

.about-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright {
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-link {
        margin: 0 auto;
    }
}

/* Search Results Styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-result-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.search-result-item .player-name {
    font-weight: 500;
    color: var(--light);
}

.search-result-item .player-username {
    font-size: 0.85rem;
    color: var(--gray);
}

.search-box {
    position: relative;
}

#playerSearch:focus + .search-results,
.search-results:hover {
    display: block;
}

.language-dropdown.open .language-toggle i {
    transform: rotate(180deg);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--dark-gray);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-dropdown.open .language-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-option {
    color: var(--light);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(0, 180, 216, 0.2);
}

.language-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.theme-toggle, .language-toggle {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover, .language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.version {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--header-height) + 2rem) 1.5rem;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.ibb.co/rKymX4sh/D05315F2-1695-4725-8C9F-ADEF8D75BF3A.png') center/cover no-repeat;
    filter: blur(8px) brightness(0.8);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 1.5rem;
}

.hero-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 550px;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-box-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(2px);
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 1.5rem;
    display: block;
}

.hero-text {
    color: #fdfdfd;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    white-space: pre-line;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-button {
    background: none;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.cta-button:hover {
    background: none;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-box {
        flex-direction: column;
        height: auto;
        max-width: 90%;
    }
    
    .hero-video-container {
        flex: 1 0 200px;
        width: 100%;
    }
    
    .hero-box-content {
        padding: 2rem 1.5rem;
        flex: 1 0 auto;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.3;
}

.content-left p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.copy-ip {
    background: rgba(0, 180, 216, 0.1);
    color: #00b4d8;
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-ip:hover {
    background: rgba(0, 180, 216, 0.2);
    transform: translateY(-2px);
}

.content-right {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.content-right h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8, #90e0ef);
    border-radius: 3px;
}

.server-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.info-row span:last-child {
    font-weight: 500;
    color: #fff;
}

.copy-ip-small {
    color: #00b4d8;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-ip-small:hover {
    color: #90e0ef;
}

.minecraft-character {
    position: absolute;
    right: 200px;
    bottom: -50px;
    height: 300px;
    transform: scaleX(-1) rotate(-8deg);
    pointer-events: none;
}

.minecraft-character img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #0f0f1a;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .search-box {
        margin: 1rem 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .content-left h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .header-actions {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .minecraft-character {
        height: 200px;
        right: -30px;
        bottom: -30px;
    }
}


.tooltip {
    position: fixed;
    background: #00b4d8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #00b4d8 transparent transparent;
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}


.wave-container {
    position: absolute;
    bottom: 0;   
    left: 0;
    width: 100%;
    height: 100px; 
    pointer-events: none;
}
:root {
    --primary: #00b4d8;
    --primary-dark: #0096c7;
    --primary-light: #90e0ef;
    --dark: #0a0a1a;
    --darker: #070712;
    --light: #ffffff;
    --light-gray: #e0e0e0;
    --gray: #6c757d;
    --dark-gray: #1a1a2e;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.logo-with-text {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 40px; 
    position: relative;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0 auto 0 40px;
    height: 100%;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--dark);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--light);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(0, 180, 216, 0.1);
    color: #00b4d8;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 8px 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: auto;
    position: relative;
    min-width: 200px;
}

.search-box:focus-within {
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.5);
}

.search-box i {
    color: var(--gray);
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--light);
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-shortcut {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 8px;
    color: var(--gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker);
    padding: 40px 0;
    color: var(--light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-copyright p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: left;
}

.copyright {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: flex-end;
}

.social-link {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

.about-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.made-by {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    top: 1px;
}

.about-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright {
        align-items: center;
        text-align: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-link {
        margin: 0 auto;
    }
}

/* Search Results Styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-result-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.search-result-item .player-name {
    font-weight: 500;
    color: var(--light);
}

.search-result-item .player-username {
    font-size: 0.85rem;
    color: var(--gray);
}

.search-box {
    position: relative;
}

#playerSearch:focus + .search-results,
.search-results:hover {
    display: block;
}

.language-dropdown.open .language-toggle i {
    transform: rotate(180deg);
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--dark-gray);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-dropdown.open .language-dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-option {
    color: var(--light);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(0, 180, 216, 0.2);
}

.language-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.theme-toggle, .language-toggle {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover, .language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.version {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--header-height) + 2rem) 1.5rem;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.ibb.co/rKymX4sh/D05315F2-1695-4725-8C9F-ADEF8D75BF3A.png') center/cover no-repeat;
    filter: blur(8px) brightness(0.8);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 1.5rem;
}

.hero-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 550px;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-box-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(2px);
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 1.5rem;
    display: block;
}

.hero-text {
    color: #fdfdfd;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    white-space: pre-line;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-button {
    background: none;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.cta-button:hover {
    background: none;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-box {
        flex-direction: column;
        height: auto;
        max-width: 90%;
    }
    
    .hero-video-container {
        flex: 1 0 200px;
        width: 100%;
    }
    
    .hero-box-content {
        padding: 2rem 1.5rem;
        flex: 1 0 auto;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.3;
}

.content-left p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.copy-ip {
    background: rgba(0, 180, 216, 0.1);
    color: #00b4d8;
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-ip:hover {
    background: rgba(0, 180, 216, 0.2);
    transform: translateY(-2px);
}

.content-right {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.content-right h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8, #90e0ef);
    border-radius: 3px;
}

.server-info {
    margin-bottom: 2rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.info-row span:last-child {
    font-weight: 500;
    color: #fff;
}

.copy-ip-small {
    color: #00b4d8;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-ip-small:hover {
    color: #90e0ef;
}

.minecraft-character {
    position: absolute;
    right: 200px;
    bottom: -50px;
    height: 300px;
    transform: scaleX(-1) rotate(-8deg);
    pointer-events: none;
}

.minecraft-character img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #0f0f1a;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .search-box {
        margin: 1rem 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .content-left h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .header-actions {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .minecraft-character {
        height: 200px;
        right: -30px;
        bottom: -30px;
    }
}


.tooltip {
    position: fixed;
    background: #00b4d8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #00b4d8 transparent transparent;
}

.tooltip.show {
    opacity: 1;
    transform: translateY(0);
}


.wave-container {
    position: absolute;
    bottom: 0;   
    left: 0;
    width: 100%;
    height: 100px; 
    pointer-events: none;
}
