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

:root {
    --bg-base: #06040d;
    --bg-panel: #0d0a18;
    --bg-panel-alt: #16132c;
    --bg-panel-soft: rgba(19, 16, 44, 0.85);
    --accent: #a557ff;
    --accent-strong: #c792ff;
    --accent-light: #dbc4ff;
    --accent-dark: #5e1fa8;
    --text-primary: #f3ecff;
    --text-muted: #b7a1d5;
    --shadow-accent: 0 15px 35px rgba(165, 87, 255, 0.35);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #171717;
    min-height: 100vh;
    color: var(--text-primary);
}

html[lang="hu"] * {
    text-transform: none !important;
}

footer,
[class*='card'],
[class*='box'] {
    background: #101010 !important;
}

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

/* Navbar */
.navbar {
    background: #101010;
    box-shadow: 0 2px 20px rgba(165, 87, 255, 0.3);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #a557ff;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.nav-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(165, 87, 255, 0.35));
}

.nav-brand h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(165, 87, 255, 0.5);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(165, 87, 255, 0.3);
    font-size: 0.85rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.status-dot.online {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: none;
}

.status-text {
    color: #a557ff;
    font-weight: 500;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #a557ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #dbc4ff;
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a557ff, #dbc4ff);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 3rem;
    background: #101010;
    border-radius: 32px;
    margin-bottom: 3rem;
    border: 1px solid rgba(165, 87, 255, 0.35);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(165, 87, 255, 0.15);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-left {
    flex: 0 0 360px;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-frame {
    position: relative;
    width: 100%;
    padding: 2rem;
    border-radius: 32px;
    background: radial-gradient(circle at 30% 20%, rgba(165, 87, 255, 0.25), rgba(5, 3, 10, 0.92));
    border: 1px solid rgba(165, 87, 255, 0.35);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.6), 0 25px 50px rgba(0, 0, 0, 0.55);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-frame::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 1px solid rgba(219, 196, 255, 0.2);
    box-shadow: inset 0 0 35px rgba(165, 87, 255, 0.15);
    pointer-events: none;
}

.hero-logo-main {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 0 45px rgba(165, 87, 255, 0.65));
}

.hero-right {
    flex: 1 1 420px;
    display: flex;
    justify-content: center;
    text-align: left;
}

.hero-info-panel {
    width: 100%;
    background: rgba(16, 16, 16, 0.92);
    border: 1px solid rgba(165, 87, 255, 0.25);
    border-radius: 28px;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    overflow: hidden;
}

.hero-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 170px;
    border-radius: 28px 28px 40% 40%;
    background: linear-gradient(135deg, rgba(165, 87, 255, 0.25), transparent);
    opacity: 0.6;
}

.hero-info-panel > * {
    position: relative;
    z-index: 1;
}

.hero-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-info-title {
    letter-spacing: 2px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #dbc4ff;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(165, 87, 255, 0.4);
    background: rgba(5, 5, 5, 0.85);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.55);
    text-transform: none;
}

.hero-info-caption {
    letter-spacing: 0.25rem;
    font-size: 0.75rem;
    color: #a557ff;
    opacity: 0.8;
    text-transform: none;
}

.hero-info-divider {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(165, 87, 255, 0.8), transparent);
    opacity: 0.7;
}

.hero-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid rgba(165, 87, 255, 0.35);
    border-radius: 999px;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(165, 87, 255, 0.15);
    border: 1px solid rgba(165, 87, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #dbc4ff;
    flex-shrink: 0;
}

.pill-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pill-label {
    letter-spacing: 1px;
    font-weight: 600;
    color: #dbc4ff;
    font-size: 0.78rem;
    text-transform: none;
}

.pill-value {
    color: #a557ff;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
    font-size: 1.05rem;
}

.pill-value:hover {
    color: #dbc4ff;
}

.hero h1,
.hero h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(165, 87, 255, 0.45);
}

.hero p {
    font-size: 1.15rem;
    color: #a557ff;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.hero-right .hero-buttons {
    justify-content: flex-start;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1rem 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(165, 87, 255, 0.35);
    background: rgba(5, 5, 5, 0.85);
    color: #dbc4ff;
    text-decoration: none;
    min-width: 260px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hero-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(219, 196, 255, 0.25);
    opacity: 0;
    transition: opacity 0.25s;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
    border-color: rgba(165, 87, 255, 0.7);
}

.hero-btn:hover::after {
    opacity: 1;
}

.hero-btn-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(165, 87, 255, 0.35), rgba(219, 196, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
}

.hero-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-btn-text strong {
    font-size: 1rem;
    letter-spacing: 0.12rem;
    color: #ffffff;
    text-transform: none;
}

.hero-btn-text small {
    font-size: 0.8rem;
    color: #a557ff;
    letter-spacing: 0.05rem;
}

.hero-btn-discord {
    background: linear-gradient(120deg, rgba(88, 101, 242, 0.25), rgba(165, 87, 255, 0.15));
    border: 1px solid rgba(88, 101, 242, 0.5);
}

.hero-btn-discord .hero-btn-icon {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.6), rgba(16, 16, 16, 0.9));
    font-size: 1.8rem;
}

.hero-btn-discord:hover {
    border-color: rgba(88, 101, 242, 0.9);
}

.hero-meta-strip {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(165, 87, 255, 0.4);
    background: rgba(5, 5, 5, 0.85);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #dbc4ff;
    text-transform: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    margin-top: auto;
}

.hero-meta-strip .meta-label {
    font-weight: 700;
    letter-spacing: 0.2rem;
}

.hero-meta-strip .meta-divider {
    width: 28px;
    height: 1px;
    background: rgba(219, 196, 255, 0.7);
}

.hero-meta-strip .meta-copy {
    font-size: 0.75rem;
    color: #a557ff;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.servers-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 25px rgba(165, 87, 255, 0.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(16, 16, 16, 0.9);
    border: 1px solid rgba(165, 87, 255, 0.2);
    border-radius: 22px;
    padding: 1.8rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #dbc4ff;
}

.feature-card p {
    color: #a557ff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 87, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.feature-card.coming-soon {
    border-style: dashed;
    border-color: rgba(165, 87, 255, 0.35);
    color: #b7a1d5;
}

.feature-card.coming-soon h3 {
    color: #f3ecff;
}

.feature-card.coming-soon p {
    color: #b7a1d5;
}

@media (max-width: 900px) {
    .hero {
        padding: 2.25rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        width: 100%;
        flex: none;
        justify-content: center;
        align-items: center;
    }

    .hero-right {
        justify-content: center;
        text-align: center;
    }

    .hero-info-panel {
        padding: 1.8rem;
    }

    .hero-info-header {
        flex-direction: column;
        align-items: center;
    }

    .hero-info-caption {
        letter-spacing: 0.4rem;
        text-align: center;
    }

    .hero-info-grid {
        align-items: center;
    }

    .info-pill {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .pill-content {
        align-items: center;
    }

    .hero-right .hero-buttons {
        justify-content: center;
    }

    .hero-meta-strip {
        align-self: center;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-btn-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        font-size: 12px;
    }

    .nav-menu a {
        padding: 6px 10px;
    }

    .hero-content,
    .hero-right,
    .hero-buttons {
        text-align: center;
        justify-content: center;
    }

    .btn {
        justify-content: center;
        font-size: 13px;
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    color: #120528;
    border: 2px solid #a557ff;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 87, 255, 0.5);
}

.btn-secondary {
    background: #16152a;
    color: #a557ff;
    border: 2px solid #a557ff;
}

.btn-secondary:hover {
    background: #0b0a16;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
    border: 2px solid #a557ff;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    border: 2px solid #dc3545;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    border-color: #bd2130;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Features */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.servers-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 25px rgba(165, 87, 255, 0.2);
    text-transform: none;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.2);
    border: 2px solid #a557ff;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(165, 87, 255, 0.4);
    border-color: #dbc4ff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: #a557ff;
}

/* Products Grid */
.shop-header {
    text-align: center;
    color: #a557ff;
    margin-bottom: 3rem;
}

.shop-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-header p {
    color: #a557ff;
}

/* Kategória fülek */
.shop-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -1rem 0 3rem 0;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #a557ff;
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.2);
}

.category-tab {
    background: transparent;
    color: #a557ff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(165, 87, 255, 0.2), transparent);
    transition: left 0.5s;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    color: #dbc4ff;
    border-color: #a557ff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.5);
}

.category-tab.active {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    color: #120528;
    border-color: #a557ff;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.5);
    font-weight: 700;
}

.empty-category {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: #a557ff;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.2);
    border: 2px solid #a557ff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165, 87, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(165, 87, 255, 0.4);
    border-color: #dbc4ff;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(165, 87, 255, 0.5));
}

.product-card h3 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #a557ff;
    margin-bottom: 1rem;
    min-height: 40px;
}

.product-coins {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dbc4ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.5);
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* Auth Forms */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.auth-box {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
    width: 100%;
    max-width: 450px;
}

.auth-box h2 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #a557ff;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #a557ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #16152a;
    color: #f3ecff;
}

.form-group input:focus {
    outline: none;
    border-color: #dbc4ff;
    box-shadow: 0 0 10px rgba(165, 87, 255, 0.3);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #a557ff;
    font-size: 0.85rem;
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #a557ff;
}

.auth-link a {
    color: #dbc4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.auth-link a:hover {
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.5);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #a557ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(165, 87, 255, 0.1);
    border: 1px solid #a557ff;
}

.auth-links a:hover {
    background: rgba(165, 87, 255, 0.2);
    color: #dbc4ff;
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.5);
    transform: translateX(-3px);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Profile */
.profile-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
}

.profile-container h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.balance-card {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    color: #120528;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(165, 87, 255, 0.5);
    border: 3px solid #a557ff;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.balance-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.balance-info {
    position: relative;
    z-index: 1;
}

.balance-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: #dbc4ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-info {
    background: #16152a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #a557ff;
}

.profile-info h2 {
    color: #a557ff;
    margin-bottom: 1rem;
}

.profile-info p {
    margin-bottom: 0.5rem;
    color: #f3ecff;
}

.profile-info strong {
    color: #a557ff;
}

/* Tables */
.orders-section h2 {
    color: #a557ff;
    margin-bottom: 1rem;
}

.orders-section p {
    color: #a557ff;
}

.orders-section a {
    color: #dbc4ff;
}

.orders-table, .admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #16152a;
    border-radius: 10px;
    overflow: hidden;
}

.orders-table th, .admin-table th {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.orders-table td, .admin-table td {
    padding: 12px;
    border-bottom: 1px solid #a557ff;
    color: #f3ecff;
}

.orders-table tr:hover, .admin-table tr:hover {
    background: #0b0a16;
}

/* Checkout */
.checkout-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
}

.checkout-container h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.order-summary {
    background: #16152a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #a557ff;
}

.order-summary h2 {
    color: #a557ff;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #a557ff;
    color: #f3ecff;
}

.summary-item span {
    color: #a557ff;
}

.summary-item strong {
    color: #dbc4ff;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #a557ff;
    color: #f3ecff;
}

.summary-total span {
    color: #a557ff;
}

.summary-total strong {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-methods h2 {
    color: #a557ff;
    margin-bottom: 1.5rem;
}

.payment-option {
    border: 2px solid #a557ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #16152a;
}

.payment-option:hover {
    border-color: #dbc4ff;
    background: #0b0a16;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
    accent-color: #a557ff;
}

.payment-option label {
    cursor: pointer;
    display: block;
}

.payment-option strong {
    color: #a557ff;
    font-size: 1.1rem;
}

.payment-option p {
    color: #f3ecff;
    margin: 0.5rem 0 0 0;
}

/* Bank Transfer */
.bank-transfer-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
}

.bank-transfer-container h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.bank-transfer-container h2, .bank-transfer-container h3 {
    color: #a557ff;
    margin-bottom: 1rem;
}

.transfer-details {
    background: #16152a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #a557ff;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #a557ff;
    color: #f3ecff;
}

.detail-item label {
    color: #a557ff;
}

.detail-item strong {
    color: #dbc4ff;
}

.detail-item.important {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: none;
}

.detail-item.important label,
.detail-item.important strong {
    color: #120528;
    font-weight: bold;
}

.order-info {
    background: #16152a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #a557ff;
    margin: 2rem 0;
}

.order-info p {
    color: #f3ecff;
    margin-bottom: 0.5rem;
}

.order-info strong {
    color: #a557ff;
}

.actions {
    margin-top: 2rem;
    text-align: center;
}

/* Admin */
.admin-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
}

.admin-container h1, .admin-container h2 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.admin-container p {
    color: #a557ff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #a557ff;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
}

.stat-card h3 {
    color: #120528;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 1rem;
    color: #120528;
}

/* Footer */
footer {
    background: #101010;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    border-top: 2px solid rgba(165, 87, 255, 0.4);
}

footer p {
    color: var(--text-muted);
}

/* Server Status Widget */
.server-status-widget {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
    text-align: center;
}

.status-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #a557ff;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(165, 87, 255, 0.2);
    border-top-color: #a557ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-online, .status-offline, .status-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.status-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
}

.status-indicator.online {
    background: #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    animation: pulse-green 2s infinite;
}

.status-indicator.offline {
    background: #dc3545;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 20px rgba(40, 167, 69, 0.5); }
    50% { box-shadow: 0 0 30px rgba(40, 167, 69, 0.8); }
}

.status-info h3 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.status-players {
    font-size: 1.3rem;
    color: #f3ecff;
    margin: 0.5rem 0;
}

.status-players strong {
    color: #a557ff;
    font-size: 1.8rem;
}

.status-version {
    color: #a557ff;
    font-size: 0.9rem;
    margin: 0;
}

.status-error p {
    color: #dc3545;
    margin: 0;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    border: 2px solid #a557ff;
}

.info-section h2 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.info-section ol {
    margin-left: 2rem;
    line-height: 2;
    color: #a557ff;
}

.info-section li {
    margin-bottom: 0.5rem;
}

/* Responsive - Mobil optimalizálás */
@media (max-width: 768px) {
    /* Alapértelmezett */
    body {
        font-size: 14px;
        padding-bottom: 80px; /* Hely a chat gombnak */
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Navigáció */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Shop header */
    .shop-header h1 {
        font-size: 2rem;
    }
    
    /* Termékek */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    /* Kategória fülek */
    .shop-categories {
        flex-direction: column;
        gap: 10px;
        padding: 15px 10px;
        margin: 0 0 2rem 0;
    }
    
    .category-tab {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkout-container,
    .bank-transfer-container {
        padding: 1.5rem;
    }
    
    /* Profil */
    .profile-container {
        padding: 1rem;
    }
    
    .balance-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .balance-icon {
        font-size: 3rem;
    }
    
    .balance-amount {
        font-size: 2rem;
    }
    
    /* Táblázatok - Scroll */
    .orders-section, .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }
    
    .orders-table, .admin-table {
        font-size: 11px;
        min-width: 600px;
    }
    
    .orders-table th, .orders-table td,
    .admin-table th, .admin-table td {
        padding: 6px 4px;
        white-space: nowrap;
    }
    
    /* Auth */
    .auth-box {
        padding: 2rem 1.5rem;
        margin: 0 10px;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Megakadályozza az auto-zoom-ot iOS-en */
    }
    
    /* Features */
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Server status */
    .server-status-widget {
        padding: 1.5rem;
    }
    
    .status-online, .status-offline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .status-indicator {
        width: 50px;
        height: 50px;
    }
    
    /* Chat widget */
    .chat-widget {
        bottom: 80px;
        right: 15px;
        z-index: 999;
    }
    
    .chat-widget-button {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .chat-widget-window {
        width: calc(100vw - 30px);
        height: 70vh;
        max-height: 500px;
        bottom: 65px;
        right: 0;
        left: auto;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem 0;
        font-size: 13px;
    }
}

/* Referral Section */
.referral-section {
    background: #16152a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid #a557ff;
}

.referral-section h2 {
    color: #a557ff;
    margin-bottom: 1.5rem;
}

.referral-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.referral-code-box {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #a557ff;
    text-align: center;
}

.referral-code-box h3 {
    color: #a557ff;
    margin-bottom: 1rem;
}

.referral-code {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    color: #120528;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    letter-spacing: 3px;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.5);
    border: 3px solid #a557ff;
}

.referral-info {
    color: #a557ff;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.referral-stats {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #a557ff;
}

.referral-stats h3 {
    color: #a557ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: #16152a;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #a557ff;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a557ff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .referral-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .referral-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .referral-code-box,
    .referral-stats {
        padding: 1.5rem;
    }
    
    .referral-code {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
        letter-spacing: 2px;
        word-break: break-all;
    }
    
    .referral-info {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    /* Admin */
    .admin-container {
        padding: 1rem;
        margin: 10px;
    }
    
    .admin-container h1 {
        font-size: 1.5rem;
    }
    
    .admin-container h2 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    
    .btn-small {
        padding: 6px 10px;
        font-size: 0.8rem;
        margin: 2px 0;
    }
    
    /* Admin táblázat gombok mobilon egymás alatt */
    .admin-table td form {
        display: block;
        margin: 3px 0;
    }
}

/* Extra kicsi telefonok (iPhone SE, stb.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        font-size: 12px;
    }
    .nav-menu a {
        padding: 6px 10px;
    }
    .hero-content,
    .hero-right,
    .hero-buttons {
        text-align: center;
        justify-content: center;
    }
    
    .category-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn {
        justify-content: center;
        font-size: 13px;
        text-align: center;
    }
}

/* Launcher Download Button */
.launcher-download-button {
    display: inline-flex;
    align-items: center;
        padding: 1.75rem;
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: 2px solid #a557ff;
    color: #120528;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    text-decoration: none;
}

.launcher-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.launcher-download-button:hover::before {
    left: 100%;
}

.launcher-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(165, 87, 255, 0.5);
    border-color: #dbc4ff;
    color: #120528;
}

.launcher-download-button:active {
    transform: translateY(-1px);
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    animation: download-bounce 2s ease-in-out infinite;
}

@keyframes download-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.launcher-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.launcher-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #120528;
}

.launcher-text small {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
    color: #16152a;
}

.download-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.launcher-download-button:hover .download-arrow {
    transform: translateY(3px);
}

/* Discord Button */
.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: 2px solid #5865F2;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
    border-color: #7289DA;
}

.discord-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    animation: discord-bounce 2s ease-in-out infinite;
}

@keyframes discord-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.discord-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.discord-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.discord-text small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.discord-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.discord-button:hover .discord-arrow {
    transform: translateX(5px);
}

/* Mobil gombok */
@media (max-width: 768px) {
    .server-ip-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .server-icon {
        width: 28px;
        height: 28px;
    }
    
    .server-text strong {
        font-size: 1rem;
    }
    
    .server-text small {
        font-size: 0.8rem;
    }
    
    .discord-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .discord-logo {
        width: 28px;
        height: 28px;
    }
    
    .discord-text strong {
        font-size: 1rem;
    }
    
    .discord-text small {
        font-size: 0.8rem;
    }
}

/* Chat Widget - Jobb alsó sarok */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    color: #120528;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.5);
    transition: all 0.3s;
    position: relative;
}

.chat-widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(165, 87, 255, 0.7);
}

.chat-widget-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #fff;
}

.chat-widget-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    border: 2px solid #a557ff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.chat-widget-header {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
    padding: 15px;
    border-radius: 13px 13px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #120528;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
}

.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-widget-message {
    max-width: 80%;
    padding: 10px;
    border-radius: 10px;
    animation: slideIn 0.3s;
}

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

.chat-widget-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
}

.chat-widget-message.admin {
    align-self: flex-start;
    background: #16152a;
    color: #f3ecff;
    border: 1px solid #a557ff;
}

.chat-widget-message .message-sender {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 0.8;
}

.chat-widget-message .message-text {
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-widget-message .message-time {
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.7;
}

.chat-widget-input {
    padding: 10px;
    border-top: 1px solid #a557ff;
    display: flex;
    gap: 10px;
}

.chat-widget-input textarea {
    flex: 1;
    background: #16152a;
    border: 1px solid #a557ff;
    border-radius: 8px;
    color: #f3ecff;
    padding: 8px;
    resize: none;
    font-family: inherit;
}

.chat-widget-input textarea:focus {
    outline: none;
    border-color: #dbc4ff;
}

.chat-widget-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #a557ff;
}

.chat-widget-footer a {
    color: #a557ff;
    text-decoration: none;
    font-size: 12px;
}

.chat-widget-footer a:hover {
    color: #dbc4ff;
}

.widget-status-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    animation: slideIn 0.3s;
}

.widget-status-message.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.widget-status-message.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.widget-status-message.status-closed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Chat Page - Teljes oldal */
.chat-page-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    border: 2px solid #a557ff;
    border-radius: 15px;
    overflow: hidden;
    height: 600px;
}

/* Admin layout */
.chat-admin-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    height: 100%;
}

.chat-users-sidebar {
    background: #16152a;
    border-right: 2px solid #a557ff;
    overflow-y: auto;
}

.chat-users-sidebar h3 {
    color: #a557ff;
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #a557ff;
}

.chat-user-item {
    padding: 15px;
    border-bottom: 1px solid #a557ff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-user-item:hover {
    background: #0b0a16;
}

.chat-user-item.active {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
}

.chat-user-item.active .user-info strong,
.chat-user-item.active .user-info small {
    color: #120528;
}

.user-info strong {
    display: block;
    color: #a557ff;
    margin-bottom: 3px;
}

.user-info small {
    color: #f3ecff;
    font-size: 12px;
}

.unread-badge {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* User layout */
.chat-user-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
    padding: 15px 20px;
    border-bottom: 2px solid #a557ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
}

.chat-status-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.chat-status-badge.status-pending {
    background: #ffc107;
    color: #120528;
}

.chat-status-badge.status-active {
    background: #28a745;
    color: #fff;
}

.chat-status-badge.status-closed {
    background: #6c757d;
    color: #fff;
}

.chat-header-actions {
    display: flex;
    gap: 10px;
}

.chat-user-item.closed {
    opacity: 0.6;
}

.chat-user-item.closed:hover {
    opacity: 0.8;
}

/* Értékelés panel - Teljes chat */
.chat-rating-panel {
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    padding: 30px;
    border-top: 3px solid #a557ff;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(165, 87, 255, 0.2);
}

.chat-rating-panel h4 {
    color: #a557ff;
    margin: 0 0 10px 0;
    font-size: 22px;
    text-shadow: 0 0 10px rgba(165, 87, 255, 0.3);
}

.chat-rating-panel p {
    color: #f3ecff;
    margin: 0 0 20px 0;
    font-size: 15px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.star {
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.5;
}

.star:hover {
    transform: scale(1.3) rotate(15deg);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.star.active {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    animation: starPulse 0.3s ease-out;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.chat-rating-panel textarea {
    width: 100%;
    max-width: 400px;
    background: #0b0a16;
    border: 2px solid #a557ff;
    border-radius: 10px;
    color: #f3ecff;
    padding: 12px;
    margin: 20px 0;
    resize: none;
    font-family: inherit;
    font-size: 14px;
}

.chat-rating-panel textarea:focus {
    outline: none;
    border-color: #dbc4ff;
    box-shadow: 0 0 15px rgba(165, 87, 255, 0.5);
}

.rating-success {
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
    padding: 30px;
    animation: fadeIn 0.5s;
}

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

/* Widget értékelés panel */
.widget-rating-panel {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    border: 2px solid #a557ff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.3);
    animation: slideIn 0.3s;
}

.widget-rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-emoji {
    font-size: 30px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.widget-rating-panel h4 {
    color: #a557ff;
    margin: 0;
    font-size: 16px;
}

.widget-rating-panel p {
    color: #f3ecff;
    margin: 5px 0 15px 0;
    font-size: 13px;
}

.widget-rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.widget-star {
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.5;
}

.widget-star:hover {
    transform: scale(1.2);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.widget-star.active {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
}

.widget-rating-success {
    color: #28a745;
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
    animation: fadeIn 0.5s;
}

.chat-header p {
    margin: 5px 0 0 0;
    font-size: 14px;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-empty {
    text-align: center;
    color: #a557ff;
    padding: 50px 20px;
    font-size: 16px;
}

.chat-message {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 12px;
    animation: slideIn 0.3s;
}

.chat-message.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #a557ff 0%, #c38dff 100%);
    color: #120528;
}

.chat-message.admin-message {
    align-self: flex-start;
    background: #16152a;
    color: #f3ecff;
    border: 1px solid #a557ff;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
}

.message-text {
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.chat-input-container {
    padding: 15px;
    border-top: 2px solid #a557ff;
    background: #16152a;
    display: flex;
    gap: 10px;
}

.chat-input-container textarea {
    flex: 1;
    background: #0b0a16;
    border: 1px solid #a557ff;
    border-radius: 8px;
    color: #f3ecff;
    padding: 10px;
    resize: none;
    font-family: inherit;
    font-size: 14px;
}

.chat-input-container textarea:focus {
    outline: none;
    border-color: #dbc4ff;
    box-shadow: 0 0 10px rgba(165, 87, 255, 0.3);
}

/* Scrollbar */
.chat-messages::-webkit-scrollbar,
.chat-widget-messages::-webkit-scrollbar,
.chat-users-sidebar::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track,
.chat-widget-messages::-webkit-scrollbar-track,
.chat-users-sidebar::-webkit-scrollbar-track {
    background: #0b0a16;
}

.chat-messages::-webkit-scrollbar-thumb,
.chat-widget-messages::-webkit-scrollbar-thumb,
.chat-users-sidebar::-webkit-scrollbar-thumb {
    background: #a557ff;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.chat-widget-messages::-webkit-scrollbar-thumb:hover,
.chat-users-sidebar::-webkit-scrollbar-thumb:hover {
    background: #dbc4ff;
}

/* Responsive */
@media (max-width: 768px) {
    /* Chat widget ablak */
    .chat-widget-window {
        width: calc(100vw - 30px);
        height: 70vh;
        max-height: 500px;
        bottom: 65px;
        right: 15px;
    }
    
    .chat-widget-header {
        padding: 12px;
    }
    
    .chat-widget-header h4 {
        font-size: 14px;
    }
    
    .chat-widget-messages {
        padding: 10px;
    }
    
    .chat-widget-message {
        max-width: 85%;
        font-size: 13px;
    }
    
    .chat-widget-input {
        padding: 8px;
    }
    
    .chat-widget-input textarea {
        font-size: 14px;
    }
    
    /* Teljes chat oldal */
    .chat-page-container {
        height: auto;
        min-height: 500px;
    }
    
    .chat-admin-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .chat-users-sidebar {
        border-right: none;
        border-bottom: 2px solid #a557ff;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .chat-users-sidebar h3 {
        font-size: 1rem;
        padding: 10px;
    }
    
    .chat-user-item {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .chat-user-layout {
        height: 70vh;
        max-height: 600px;
    }
    
    .chat-messages {
        padding: 15px 10px;
    }
    
    .chat-message {
        max-width: 85%;
        font-size: 14px;
    }
    
    .chat-input-container {
        padding: 10px;
    }
    
    .chat-input-container textarea {
        font-size: 16px; /* Megakadályozza az iOS zoom-ot */
    }
    
    /* Értékelés panel */
    .chat-rating-panel {
        padding: 20px 15px;
    }
    
    .rating-stars {
        gap: 10px;
    }
    
    .star {
        font-size: 40px;
    }
    
    .widget-rating-panel {
        padding: 15px;
        margin: 5px;
    }
    
    .widget-rating-stars {
        gap: 5px;
    }
    
    .widget-star {
        font-size: 28px;
    }
}

/* Leaderboard / Toplista */
.leaderboard-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #a557ff;
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.3);
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.leaderboard-header h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.leaderboard-header p {
    color: #a557ff;
}

.leaderboard-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #a557ff;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leaderboard-item {
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #a557ff;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.leaderboard-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.4);
    border-color: #dbc4ff;
}

.leaderboard-item.rank-1 {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.leaderboard-item.rank-2 {
    border-color: #C0C0C0;
}

.leaderboard-item.rank-3 {
    border-color: #CD7F32;
}

.rank-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.rank-icon {
    font-size: 2.5rem;
}

.rank-number {
    color: #a557ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.player-info {
    flex: 1;
}

.player-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #dbc4ff;
    margin-bottom: 5px;
}

.player-last-seen {
    font-size: 0.9rem;
    color: #a557ff;
}

.player-stats {
    text-align: right;
    min-width: 150px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dbc4ff;
    margin-bottom: 3px;
}

.stat-detail {
    font-size: 0.85rem;
    color: #a557ff;
}

.empty-leaderboard {
    text-align: center;
    padding: 50px;
    color: #a557ff;
}

.empty-leaderboard p {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Játékos profil */
.player-profile-container {
    background: linear-gradient(135deg, #0b0a16 0%, #05030a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #a557ff;
    box-shadow: 0 5px 20px rgba(165, 87, 255, 0.3);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #a557ff;
}

.player-avatar {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #a557ff;
    box-shadow: 0 5px 15px rgba(165, 87, 255, 0.5);
}

.player-avatar img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.player-title h1 {
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.status-online { color: #28a745; font-weight: bold; }
.status-recent { color: #ffc107; font-weight: bold; }
.status-away { color: #ff9800; font-weight: bold; }
.status-offline { color: #6c757d; font-weight: bold; }

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #a557ff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(165, 87, 255, 0.4);
    border-color: #dbc4ff;
}

.stat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(165, 87, 255, 0.5));
}

.stat-info h3 {
    color: #a557ff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-big {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 5px 0;
}

.stat-info small {
    color: #a557ff;
    font-size: 0.85rem;
}

.player-dates {
    background: #16152a;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #a557ff;
    margin-bottom: 2rem;
}

.player-dates p {
    color: #f3ecff;
    margin: 5px 0;
}

.player-dates strong {
    color: #a557ff;
}

.player-actions {
    text-align: center;
}

/* Mobil */
@media (max-width: 768px) {
    .leaderboard-container,
    .player-profile-container {
        padding: 1.5rem;
    }
    
    .leaderboard-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .player-stats {
        text-align: center;
        min-width: auto;
    }
    
    .player-header {
        flex-direction: column;
        text-align: center;
    }
    
    .player-title h1 {
        font-size: 2rem;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
}


/* ==================== SZERENCSEKERÉK ==================== */

.wheel-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.wheel-container h1 {
    text-align: center;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.wheel-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #a557ff;
    text-align: center;
}

.info-label {
    display: block;
    color: #a557ff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-value {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.info-value.free-spins {
    color: #28a745;
}

.wheel-section {
    text-align: center;
    margin: 3rem 0;
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(165, 87, 255, 0.3));
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #a557ff;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

.spin-button {
    font-size: 1.5rem;
    padding: 1rem 3rem;
    margin: 1rem 0;
    animation: pulse 2s infinite;
}

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

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

.result-message {
    margin-top: 2rem;
    min-height: 60px;
}

.wheel-stats {
    margin: 3rem 0;
}

.wheel-stats h2 {
    text-align: center;
    color: #a557ff;
    margin-bottom: 2rem;
}

.recent-wins {
    margin: 3rem 0;
}

.recent-wins h2 {
    text-align: center;
    color: #a557ff;
    margin-bottom: 2rem;
}

.wins-list {
    background: linear-gradient(135deg, #16152a 0%, #0b0a16 100%);
    border-radius: 15px;
    border: 2px solid #a557ff;
    padding: 1rem;
}

.win-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #a557ff;
}

.win-item:last-child {
    border-bottom: none;
}

.win-user {
    color: #fff;
    font-weight: bold;
}

.win-prize {
    color: #a557ff;
    font-weight: bold;
}

.win-time {
    color: #888;
    font-size: 0.9rem;
}

/* Mobil */
@media (max-width: 768px) {
    .wheel-container {
        padding: 1rem;
    }
    
    .wheel-container h1 {
        font-size: 1.8rem;
    }
    
    #wheelCanvas {
        width: 100%;
        max-width: 350px;
    }
    
    .spin-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
    
    .win-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


/* ============================================
   STATISZTIKA WIDGET
   ============================================ */
.stats-widget {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(165, 87, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-top: 0.25rem;
    text-transform: none;
}

@media (max-width: 480px) {
    .stats-widget {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   KÖZÖSSÉG STATISZTIKA SZEKCIÓ
   ============================================ */
.community-stats {
    background: linear-gradient(135deg, #0d0d0d 0%, #0b0a16 50%, #0d0d0d 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 900px;
    border: 2px solid rgba(165, 87, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(165, 87, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.community-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a557ff, #dbc4ff, #a557ff, transparent);
}

.community-stats::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165, 87, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.stats-title .stats-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(165, 87, 255, 0.5));
}

.community-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.community-stats .stat-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(165, 87, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.community-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 87, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.community-stats .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(165, 87, 255, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(165, 87, 255, 0.2);
}

.community-stats .stat-card:hover::before {
    opacity: 1;
}

.community-stats .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(165, 87, 255, 0.15) 0%, rgba(165, 87, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a557ff;
    transition: all 0.3s;
    border: 2px solid rgba(165, 87, 255, 0.3);
}

.community-stats .stat-icon.active {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.05) 100%);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.4);
}

.community-stats .stat-icon.time {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.05) 100%);
    color: #007bff;
    border-color: rgba(0, 123, 255, 0.4);
}

.community-stats .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(165, 87, 255, 0.3);
}

.community-stats .stat-content {
    position: relative;
    z-index: 1;
}

.community-stats .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a557ff 0%, #dbc4ff 50%, #a557ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(165, 87, 255, 0.3);
}

.community-stats .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .community-stats {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .stats-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .community-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .community-stats .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .community-stats .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .community-stats .stat-number {
        font-size: 2.2rem;
    }
    
    .community-stats .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .community-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* ---------------------------------
   Sötét felületek egységes beállítása
---------------------------------- */
.hero,
.features,
.feature-card,
.shop-categories,
.auth-box,
.profile-container,
.profile-info,
.balance-card,
.orders-section,
.orders-table,
.admin-table,
.checkout-container,
.order-summary,
.payment-option,
.bank-transfer-container,
.transfer-details,
.order-info,
.admin-container,
.stat-card,
.server-status-widget,
.info-section,
.referral-section,
.referral-code-box,
.referral-stats,
.referral-section .stat-item,
.wheel-container,
.wheel-info .info-card,
.wheel-section,
.wins-list,
.win-item,
.chat-widget-window,
.chat-page-container,
.chat-users-sidebar,
.chat-main,
.chat-input-container,
.leaderboard-container,
.leaderboard-item,
.player-profile-container,
.player-header,
.stats-grid-large .stat-card,
.player-dates,
.stats-widget,
.community-stats,
.community-stats .stat-card,
.stat-item,
footer {
    background: #101010 !important;
    background-image: none !important;
}

footer {
    border-top: 2px solid rgba(165, 87, 255, 0.3);
    color: var(--text-muted);
}