@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #080808;
    --secondary: #111111;
    --accent: #c52a2c;
    --accent-dark: #8b1d1f;
    --text: #ffffff;
    --text-secondary: #9096a2;
    --border: rgba(255, 255, 255, 0.03);
    --card-bg: rgba(17, 17, 17, 0.95);
    --gradient: linear-gradient(135deg, #c52a2c 0%, #8b1d1f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--text);
    min-height: 100vh;
    overflow: hidden;
    letter-spacing: -0.02em;
}

/* Modern háttér effekt */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(800px circle at top right, rgba(197, 42, 44, 0.15), transparent),
        radial-gradient(600px circle at bottom left, rgba(139, 29, 31, 0.1), transparent);
    z-index: -1;
}

.container {
    height: 100vh;
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 2800px;
    margin: 0 auto;
    gap: 2rem;
}

.logo-section {
    text-align: center;
}

.logo {
    width: 600px;
    height: auto;
    display: block;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.server-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.server-status, .player-count {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(20px);
    font-size: 1rem;
    font-weight: 500;
    min-width: 180px;
    justify-content: center;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Kiemelt szavak erősebb színnel */
h1 span {
    color: var(--text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ip-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem 3rem;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
}

.ip-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

#server-ip {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
}

.modern-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-button:hover {
    background: var(--accent-dark);
}

.modern-button i {
    font-size: 1.1rem;
}

.right-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 280px;
}

@media (max-width: 1800px) {
    .logo {
        width: 1200px;
    }
}

@media (max-width: 1600px) {
    .logo {
        width: 1000px;
    }
}

@media (max-width: 1400px) {
    .logo {
        width: 800px;
    }
}

@media (max-width: 1200px) {
    .logo {
        width: 700px;
    }
    h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        gap: 1.5rem;
    }

    .logo {
        width: min(90vw, 400px);
    }

    h1 {
        font-size: min(10vw, 3rem);
        line-height: 1.1;
    }

    .server-info {
        gap: 0.75rem;
    }

    .server-status, .player-count {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .ip-card {
        padding: 1.5rem;
        width: 90%;
        margin: 0 auto;
    }

    .ip-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    #server-ip {
        font-size: min(7vw, 2rem);
    }

    .modern-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .social-button {
        width: 50px;
        height: 50px;
    }

    .social-button i {
        font-size: 1.3rem;
    }

    .social-links {
        margin-top: 0.5rem;
    }
}

@media (max-height: 700px) {
    .container {
        gap: 1rem;
    }

    .logo {
        width: min(80vw, 300px);
    }

    h1 {
        font-size: min(8vw, 2.5rem);
    }

    .server-info {
        gap: 0.5rem;
    }

    .ip-card {
        padding: 1rem;
    }
}

#status-text, #player-count {
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.social-button {
    background: var(--card-bg);
    border: 1px solid var(--border);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Discord gomb */
.social-button.discord {
    color: var(--accent);
}

.social-button.discord:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Bolt gomb */
.social-button.shop {
    color: var(--accent);
}

.social-button.shop:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.social-button i {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

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

/* Még kisebb képernyőkre */
@media (max-width: 360px) {
    .ip-card {
        padding: 1rem;
        width: 95%;
    }
    
    #server-ip {
        font-size: 1.8rem;
    }
}
