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

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    min-height: 100vh;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 50, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(50, 80, 200, 0.15) 0%, transparent 50%);
    z-index: -1;
}

header {
    background: rgba(15, 20, 40, 0.95);
    border-bottom: 3px solid #8b5cf6;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-symbol {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: rotate 20s linear infinite;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav a {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #ffffff;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
}

.page-header {
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.page-header .subtitle {
    font-size: 1.4rem;
    color: #b8b8b8;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.alert-panel {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid #8b5cf6;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.alert-panel h2 {
    color: #8b5cf6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.alert-panel ul {
    list-style: none;
}

.alert-panel li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.alert-panel li:last-child {
    border-bottom: none;
}

.alert-panel li:before {
    content: "◆";
    position: absolute;
    left: 1rem;
    color: #ec4899;
    font-size: 1.2rem;
}

.game-section {
    background: rgba(15, 20, 40, 0.8);
    border: 2px solid #8b5cf6;
    border-radius: 10px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: 3px solid #8b5cf6;
    border-radius: 8px;
    background: #000000;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(15, 20, 40, 0.9) 0%, rgba(20, 25, 50, 0.9) 100%);
    border: 2px solid #8b5cf6;
    border-radius: 10px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    border-color: #ec4899;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #b8b8b8;
}

.content-block {
    background: rgba(15, 20, 40, 0.8);
    border-left: 4px solid #8b5cf6;
    border-radius: 5px;
    padding: 3rem;
    margin: 2.5rem 0;
    line-height: 1.9;
}

.content-block h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ec4899;
    text-transform: uppercase;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #c0c0c0;
}

.content-block ul,
.content-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #b8b8b8;
}

.site-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 3px solid #8b5cf6;
    padding: 4rem 3rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-size: 1.6rem;
    color: #8b5cf6;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
}

.footer-text {
    margin-top: 2rem;
    color: #888;
    font-size: 1rem;
}

.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border: 3px solid #8b5cf6;
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.5);
}

.modal-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #c0c0c0;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn.accept {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border-color: #8b5cf6;
}

.modal-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.modal-btn.decline {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    border-color: #dc2626;
}

.modal-btn.decline:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding: 6rem 2rem;
        border-left: 3px solid #8b5cf6;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav a {
        display: block;
        padding: 1.2rem;
        font-size: 1.3rem;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .subtitle {
        font-size: 1.2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 550px;
    }

    .modal-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .modal-box h2 {
        font-size: 2.2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }

    .content-block {
        padding: 2rem;
    }

    .content-block h1 {
        font-size: 2.5rem;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 2rem 1.5rem;
    }
}
