*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}
h1, h2 {
    font-family: 'Righteous', cursive;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: inherit;
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-wrapper {
    display: flex;
    min-height: 100vh;
    position: relative;
}
.main-content {
    flex: 1;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}
@media (max-width: 1200px) {
    .main-content {
        margin-left: 260px;
    }
}
@media (max-width: 990px) {
    .main-content {
        margin-left: 0;
    }
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0c1e38, #050d1a);
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(138, 43, 226, 0.25);
}
@media (max-width: 1200px) {
    .sidebar {
        width: 260px;
    }
}
@media (max-width: 990px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .sidebar.active {
        transform: translateX(0);
    }
}
.sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.sidebar-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 20px;
}
.sidebar-top {
    margin-bottom: 40px;
    text-align: center;
}
.sidebar-logo {
    display: inline-block;
    width: 200px;
    transition: transform 0.3s ease;
}
.sidebar-logo:hover {
    transform: scale(1.05);
}
.sidebar-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
    padding-bottom: 30px;
}
.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.sidebar-nav .nav-link span {
    flex: 1;
}
.sidebar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8a2be2, #9932cc);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.sidebar-nav .nav-link:hover {
    background: rgba(138, 43, 226, 0.15);
    color: #9932cc;
    border-color: rgba(138, 43, 226, 0.35);
    transform: translateX(5px);
}
.sidebar-nav .nav-link:hover i {
    color: #9932cc;
    transform: scale(1.1);
}
.sidebar-nav .nav-link:hover::before {
    transform: scaleY(1);
}
.sidebar-nav .nav-link.active {
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    color: #9932cc;
    border-color: rgba(138, 43, 226, 0.5);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(138, 43, 226, 0.25);
}
.sidebar-nav .nav-link.active i {
    color: #9932cc;
}
.sidebar-nav .nav-link.active::before {
    transform: scaleY(1);
}
.sidebar-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}
.sidebar-user {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.25);
}
.sidebar-user .user-info {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(138, 43, 226, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.18);
}
.sidebar-user .user-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
    word-break: break-all;
    font-weight: 500;
}
.sidebar-user .user-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9932cc;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}
.sidebar-user .user-profile-link:hover {
    color: #ba55d3;
    background: rgba(138, 43, 226, 0.12);
}
.sidebar-user .btn-logout {
    width: 100%;
    padding: 12px 15px;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.35);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.sidebar-user .btn-logout:hover {
    border-color: rgba(220, 53, 69, 0.6);
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-1px);
}
.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(138, 43, 226, 0.25);
    text-align: center;
}
.sidebar-responsible {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.25);
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 15px;
}
.sidebar-age {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.sidebar-age .age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #ffffff;
    border-radius: 50%;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}
.sidebar-age .age-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}
.responsible-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0 0 8px;
}
.responsible-text:last-of-type {
    margin-bottom: 12px;
}
.responsible-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #9932cc;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.35);
    transition: all 0.3s ease;
}
.responsible-link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.6);
    color: #ba55d3;
}
.sidebar-copyright {
    font-size: 11px;
    color: #fff;
    opacity: 0.6;
    margin: 0;
}
.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background: rgba(10, 26, 46, 0.4);
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.4);
    border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.6);
}
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: 3px solid #8a2be2;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.45);
    transition: all 0.3s ease;
}
.sidebar-toggle:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    transform: scale(1.08);
}
.sidebar-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}
.sidebar-toggle span::before,
.sidebar-toggle span::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.sidebar-toggle span::before {
    top: -8px;
    left: 0;
}
.sidebar-toggle span::after {
    bottom: -8px;
    left: 0;
}
.sidebar-toggle.active span {
    background: transparent;
}
.sidebar-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}
.sidebar-toggle.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}
@media (max-width: 990px) {
    .sidebar-toggle {
        display: flex;
    }
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    backdrop-filter: blur(5px);
}
.sidebar-overlay.active {
    display: block;
}
.btn-link-border {
    background: transparent;
    border: 3px solid #8a2be2;
    border-radius: 20px;
    color: #9932cc;
    padding: 14px 32px;
    display: inline-block;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.btn-link-border::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 ease;
}
.btn-link-border:hover {
    color: #fff;
    background: #8a2be2;
    border-color: #8a2be2;
    box-shadow: 0 6px 28px rgba(138, 43, 226, 0.55);
    transform: translateY(-2px);
}
.btn-link-border:hover::before {
    left: 100%;
}
.btn-link-main {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: 3px solid #8a2be2;
    border-radius: 20px;
    color: #fff;
    padding: 14px 32px;
    display: inline-block;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(138, 43, 226, 0.45);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.btn-link-main::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 ease;
}
.btn-link-main:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    border-color: #9932cc;
    box-shadow: 0 6px 28px rgba(138, 43, 226, 0.7);
    transform: translateY(-2px);
}
.btn-link-main:hover::before {
    left: 100%;
}
.hero-section {
    padding: 60px 0 80px;
    background: url("https://vibehallgaming.com/wp-content/themes/vibehallgaming-com/img/bg.png") center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 26, 0.88), rgba(12, 30, 56, 0.92), rgba(5, 13, 26, 0.96));
    z-index: 1;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(153, 50, 204, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(75, 0, 130, 0.25));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 25px;
    animation: pulse-glow 2s ease-in-out infinite;
}
.hero-badge i {
    color: #ba55d3;
    font-size: 14px;
    animation: spin-slow 4s linear infinite;
}
.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(138, 43, 226, 0.55);
    }
}
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.hero-title {
    margin-bottom: 25px;
}
.hero-title .title-line {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 42px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.hero-title .title-highlight {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 64px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3, #dda0dd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 22px rgba(138, 43, 226, 0.45));
    letter-spacing: 3px;
}
@media (max-width: 768px) {
    .hero-title .title-line {
        font-size: 28px;
    }
    .hero-title .title-highlight {
        font-size: 42px;
    }
}
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}
@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
    }
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.35);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}
.hero-badge-item i {
    color: #9932cc;
    font-size: 18px;
}
.hero-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.hero-badge-item .age-mark {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 8px;
}
.hero-badge-item:hover {
    background: rgba(138, 43, 226, 0.28);
    border-color: #8a2be2;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .hero-badges {
        gap: 15px;
    }
    .hero-badge-item {
        padding: 10px 16px;
    }
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: 3px solid #8a2be2;
    border-radius: 25px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.55);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn-hero-play i {
    font-size: 22px;
}
.btn-hero-play::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s ease;
}
.btn-hero-play:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    box-shadow: 0 12px 42px rgba(138, 43, 226, 0.75);
    transform: translateY(-3px) scale(1.02);
}
.btn-hero-play:hover::before {
    left: 100%;
}
.btn-hero-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 3px solid rgba(138, 43, 226, 0.55);
    border-radius: 25px;
    color: #9932cc;
    font-family: 'Righteous', cursive;
    font-size: 20px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-hero-info i {
    font-size: 22px;
}
.btn-hero-info:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #ba55d3;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(138, 43, 226, 0.4);
}
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero-play,
    .btn-hero-info {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 18px;
        padding: 16px 30px;
    }
}
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.deco-item {
    position: absolute;
    font-size: 50px;
    opacity: 0.22;
    color: #9932cc;
    filter: drop-shadow(0 4px 18px rgba(138, 43, 226, 0.35));
}
.deco-item.deco-balloon-1 {
    top: 15%;
    left: 8%;
    animation: float-slow 8s ease-in-out infinite;
    color: #ba55d3;
}
.deco-item.deco-balloon-2 {
    top: 25%;
    right: 12%;
    animation: float-slow 7s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 40px;
}
.deco-item.deco-balloon-3 {
    bottom: 30%;
    left: 15%;
    animation: float-slow 9s ease-in-out infinite;
    animation-delay: 2s;
    font-size: 35px;
    color: #dda0dd;
}
.deco-item.deco-ticket {
    bottom: 20%;
    right: 8%;
    animation: float-rotate 6s ease-in-out infinite;
    font-size: 45px;
}
.deco-item.deco-ferris {
    top: 10%;
    right: 25%;
    font-size: 70px;
    opacity: 0.15;
    animation: spin-slow 20s linear infinite;
    color: #ba55d3;
}
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}
@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-25px) rotate(15deg);
    }
}
.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.feature-card {
    background: linear-gradient(135deg, rgba(12, 30, 56, 0.92), rgba(5, 13, 26, 0.96));
    border: 2px solid rgba(138, 43, 226, 0.28);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
}
.feature-card:hover .feature-glow {
    opacity: 1;
    transform: scale(1.3);
}
.feature-card.feature-highlight {
    border-color: rgba(138, 43, 226, 0.55);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(12, 30, 56, 0.96));
}
.feature-card.feature-highlight .feature-icon {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #fff;
}
.feature-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(138, 43, 226, 0.2);
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #9932cc;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}
.feature-content {
    position: relative;
    z-index: 2;
}
.feature-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 15px;
}
.feature-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Righteous', cursive;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.feature-tag.tag-free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}
.feature-tag.tag-hot {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    animation: pulse-tag 1.5s ease-in-out infinite;
}
.feature-tag.tag-new {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.feature-tag.tag-easy {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
@keyframes pulse-tag {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.section-header .section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}
.section-header .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #9932cc;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    transition: all 0.3s ease;
}
.section-header .view-all-link i {
    transition: transform 0.3s ease;
}
.section-header .view-all-link:hover {
    color: #ba55d3;
}
.section-header .view-all-link:hover i {
    transform: translateX(5px);
}
.games-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    position: relative;
}
.games-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.games-section .container {
    position: relative;
    z-index: 1;
}
.games-header {
    margin-bottom: 40px;
}
.games-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.games-title-row h2 {
    font-family: 'Righteous', cursive;
    font-size: 42px;
    margin: 0;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.games-count {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.25);
    padding: 10px 20px;
    border-radius: 30px;
}
.games-count span {
    font-weight: 700;
    color: #9932cc;
}
@media (max-width: 768px) {
    .games-title-row {
        justify-content: center;
        text-align: center;
    }
    .games-title-row h2 {
        font-size: 32px;
        width: 100%;
    }
}
.games-toolbar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(12, 30, 56, 0.85);
    border: 1px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}
@media (max-width: 900px) {
    .games-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}
.search-box {
    flex: 1;
    position: relative;
    min-width: 250px;
}
.search-box i.fa-search {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(138, 43, 226, 0.7);
    font-size: 16px;
    pointer-events: none;
}
.search-box input {
    width: 100%;
    background: rgba(5, 13, 26, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 12px;
    padding: 14px 50px 14px 48px;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}
.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.search-box input:focus {
    border-color: #8a2be2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
    background: rgba(5, 13, 26, 1);
}
.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(138, 43, 226, 0.28);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.search-clear i {
    color: #9932cc;
    font-size: 12px;
}
.search-clear:hover {
    background: #8a2be2;
}
.search-clear:hover i {
    color: #fff;
}
.filter-controls {
    display: flex;
    gap: 12px;
}
@media (max-width: 900px) {
    .filter-controls {
        justify-content: stretch;
    }
}
@media (max-width: 500px) {
    .filter-controls {
        flex-direction: column;
    }
}
.filter-dropdown {
    position: relative;
    z-index: 50;
}
@media (max-width: 900px) {
    .filter-dropdown {
        flex: 1;
    }
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(5, 13, 26, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    position: relative;
    z-index: 51;
    user-select: none;
}
@media (max-width: 900px) {
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}
.dropdown-toggle > i:first-child {
    color: #9932cc;
    font-size: 14px;
    pointer-events: none;
}
.dropdown-toggle > span {
    flex: 1;
    text-align: left;
    pointer-events: none;
}
.dropdown-toggle > i.fa-chevron-down {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.dropdown-toggle:hover,
.dropdown-toggle.active {
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
}
.dropdown-toggle.active > i.fa-chevron-down {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 100%;
    background: rgba(12, 30, 56, 0.98);
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 200;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    display: block;
}
.dropdown-menu.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    display: block !important;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    outline: none;
}
.dropdown-item i {
    width: 16px;
    text-align: center;
    color: rgba(138, 43, 226, 0.7);
    font-size: 14px;
    pointer-events: none;
}
.dropdown-item:hover {
    background: rgba(138, 43, 226, 0.2);
    color: #fff;
}
.dropdown-item:hover i {
    color: #9932cc;
}
.dropdown-item.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(75, 0, 130, 0.28));
    color: #9932cc;
}
.dropdown-item.active i {
    color: #9932cc;
}
.games-grid-wrapper {
    position: relative;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}
.game-card {
    background: rgba(12, 30, 56, 0.7);
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.28),
                0 0 0 1px rgba(138, 43, 226, 0.4);
}
.game-card:hover .game-image img {
    transform: scale(1.1);
}
.game-card:hover .game-overlay {
    opacity: 1;
}
.game-card:hover .btn-play-overlay {
    transform: scale(1);
}
.game-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 30, 56, 0.35), rgba(12, 30, 56, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-play-overlay {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.55);
}
.btn-play-overlay:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.75);
}
.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Righteous', cursive;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.game-badge.badge-new {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}
.game-badge.badge-hot {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #fff;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.5);
    animation: pulse-badge 1.5s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.game-info {
    padding: 16px;
    text-align: center;
}
.game-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #9932cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.85;
}
.game-info h3 {
    font-family: 'Righteous', cursive;
    font-size: 17px;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-play-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}
.btn-play-game i {
    font-size: 12px;
}
.btn-play-game:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.65);
    transform: translateY(-2px);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.no-games-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}
.no-games-found > i {
    font-size: 60px;
    color: rgba(138, 43, 226, 0.4);
    margin-bottom: 25px;
}
.no-games-found h3 {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    color: #fff;
    margin: 0 0 12px;
}
.no-games-found p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 30px;
}
.btn-reset-filters {
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #8a2be2;
    border-radius: 12px;
    color: #9932cc;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-reset-filters:hover {
    background: #8a2be2;
    color: #fff;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.55);
}
.new-games-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0c1e38, #050d1a);
    position: relative;
}
.new-games-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.new-games-section .container {
    position: relative;
    z-index: 1;
}
.new-games-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .new-games-section .section-header {
        flex-direction: column;
        text-align: center;
    }
}
.new-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
@media (max-width: 1200px) {
    .new-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .new-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .new-games-grid {
        grid-template-columns: 1fr;
    }
}
.new-game-card {
    background: rgba(12, 30, 56, 0.7);
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.new-game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.28),
                0 0 0 1px rgba(138, 43, 226, 0.4);
}
.new-game-card:hover .new-game-image img {
    transform: scale(1.15);
}
.new-game-card:hover .new-game-overlay {
    opacity: 1;
}
.new-game-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.new-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.new-game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 30, 56, 0.35), rgba(12, 30, 56, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-new-play {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.55);
}
.btn-new-play:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.75);
}
.new-game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}
.new-game-info {
    padding: 20px;
    text-align: center;
}
.new-game-info h3 {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px;
    line-height: 1.3;
}
.btn-new-game-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9932cc;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-new-game-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.btn-new-game-link:hover {
    color: #ba55d3;
}
.btn-new-game-link:hover i {
    transform: translateX(5px);
}
.stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.12) 0%, transparent 70%),
                radial-gradient(circle at 20% 20%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.stats-section .container {
    position: relative;
    z-index: 1;
}
.stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
@media (max-width: 1200px) {
    .stats-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .stats-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.stats-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.stats-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stats-item:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.28),
                0 0 0 1px rgba(138, 43, 226, 0.4);
}
.stats-item:hover::before {
    opacity: 1;
}
.stats-item:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    color: #9932cc;
}
.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 20px;
    color: #9932cc;
    font-size: 36px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.stats-number {
    font-family: 'Righteous', cursive;
    font-size: 56px;
    color: #fff;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.35);
}
@media (max-width: 768px) {
    .stats-number {
        font-size: 42px;
    }
}
.stats-label {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .stats-label {
        font-size: 18px;
    }
}
.stats-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0c1e38, #050d1a);
    position: relative;
}
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.faq-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.15);
}
.faq-item.active {
    border-color: rgba(138, 43, 226, 0.55);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.25);
}
.faq-item.active .faq-question {
    background: rgba(138, 43, 226, 0.15);
    color: #9932cc;
}
.faq-item.active .faq-question i {
    color: #9932cc;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}
.faq-question span {
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}
.faq-question i {
    font-size: 16px;
    color: rgba(138, 43, 226, 0.7);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.faq-question:hover {
    background: rgba(138, 43, 226, 0.08);
}
.faq-question:hover i {
    color: #9932cc;
}
.faq-question:focus {
    outline: none;
}
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    .faq-question span {
        padding-right: 15px;
    }
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 768px) {
    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 15px;
    }
}
.age-verification-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInUp 0.5s ease-out;
}
.age-modal-content {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border: 3px solid #8a2be2;
    border-radius: 25px;
    padding: 30px;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}
.age-modal-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.age-modal-content:hover::before {
    opacity: 1;
}
.age-modal-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(138, 43, 226, 0.35));
    animation: pulse 2s ease-in-out infinite;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-modal-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.age-modal-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.95;
}
.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.age-btn {
    padding: 12px 28px;
    border: 3px solid;
    border-radius: 20px;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.age-btn::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 ease;
}
.age-btn:hover::before {
    left: 100%;
}
.age-btn-accept {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-color: #8a2be2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.45);
}
.age-btn-accept:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.65);
    transform: translateY(-2px);
}
.age-btn-decline {
    background: transparent;
    border-color: #ef4444;
    color: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}
.age-btn-decline:hover {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
@media (max-width: 768px) {
    .age-verification-modal {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .age-modal-content {
        max-width: 100%;
        padding: 25px 20px;
    }
    .age-modal-icon {
        font-size: 40px;
    }
    .age-modal-content h3 {
        font-size: 20px;
    }
    .age-modal-content p {
        font-size: 14px;
    }
    .age-modal-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .age-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
}
.footer {
    padding: 60px 0 30px;
    background: linear-gradient(180deg, #0c1e38, #050d1a);
    border-top: 3px solid rgba(138, 43, 226, 0.35);
    position: relative;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}
@media (max-width: 1200px) {
    .footer {
        margin-left: 260px;
    }
}
@media (max-width: 990px) {
    .footer {
        margin-left: 0;
    }
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.footer .container {
    position: relative;
    z-index: 1;
}
.footer-logo-section {
    text-align: center;
    margin-bottom: 50px;
}
.footer-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.footer-logo img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(138, 43, 226, 0.45));
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}
.footer-section h4 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #9932cc;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.35);
    text-align: left;
}
@media (max-width: 768px) {
    .footer-section h4 {
        text-align: center;
        font-size: 22px;
    }
}
.footer-section.footer-section-left {
    text-align: left;
}
@media (max-width: 768px) {
    .footer-section.footer-section-left {
        text-align: center;
    }
}
.footer-section.footer-section-right {
    text-align: left;
}
@media (max-width: 768px) {
    .footer-section.footer-section-right {
        text-align: center;
    }
}
.footer-info p {
    font-size: 17px;
    color: #fff;
    margin: 0;
    line-height: 1.7;
    opacity: 0.95;
    text-align: left;
}
@media (max-width: 768px) {
    .footer-info p {
        text-align: center;
        font-size: 16px;
    }
}
.footer-info p strong {
    font-weight: 600;
    color: #fff;
}
.footer-info p a {
    color: #fff;
    transition: color 0.3s ease;
    font-weight: 500;
}
.footer-info p a:hover {
    color: #9932cc;
    text-decoration: underline;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}
@media (max-width: 768px) {
    .footer-nav {
        align-items: center;
        text-align: center;
    }
}
.footer-nav a {
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease;
    padding: 10px 0;
    opacity: 0.95;
    display: inline-block;
}
@media (max-width: 768px) {
    .footer-nav a {
        font-size: 16px;
    }
}
.footer-nav a:hover {
    color: #9932cc;
    opacity: 1;
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .footer-nav a:hover {
        transform: none;
    }
}
.footer-nav a.footer-nav-highlight {
    color: #9932cc;
    font-weight: 600;
    opacity: 1;
}
.footer-nav a.footer-nav-highlight:hover {
    color: #ba55d3;
}
.footer-age-warning {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.age-warning-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 35px;
    background: rgba(12, 30, 56, 0.92);
    border: 2px solid rgba(138, 43, 226, 0.55);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .age-warning-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
        gap: 18px;
    }
}
.age-warning-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}
@media (max-width: 768px) {
    .age-warning-icon {
        width: 60px;
        height: 60px;
    }
}
.age-warning-text {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}
@media (max-width: 768px) {
    .age-warning-text {
        font-size: 15px;
    }
}
.footer-disclaimer-box {
    background: rgba(12, 30, 56, 0.92);
    border: 2px solid rgba(138, 43, 226, 0.55);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .footer-disclaimer-box {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
}
.footer-disclaimer-box h5 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #9932cc;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(138, 43, 226, 0.35);
    text-align: left;
}
@media (max-width: 768px) {
    .footer-disclaimer-box h5 {
        font-size: 20px;
        text-align: center;
    }
}
.footer-disclaimer-box p {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
    text-align: left;
}
@media (max-width: 768px) {
    .footer-disclaimer-box p {
        font-size: 14px;
        text-align: left;
    }
}
.footer-responsible-logos {
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .footer-responsible-logos {
        margin-bottom: 50px;
    }
}
.responsible-logos-title {
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .responsible-logos-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
.responsible-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .responsible-logos-wrapper {
        gap: 25px;
    }
}
.responsible-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}
.responsible-logo:hover {
    transform: scale(1.1);
}
.responsible-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
@media (max-width: 768px) {
    .responsible-logo img {
        height: 45px;
    }
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(138, 43, 226, 0.25);
}
.footer-bottom .copyright {
    font-size: 15px;
    font-weight: 500;
    color: #9932cc;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-bottom .copyright {
        font-size: 14px;
    }
}
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(75, 0, 130, 0.25));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 25px;
}
.page-badge i {
    color: #ba55d3;
    font-size: 16px;
}
.page-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.page-title {
    font-family: 'Righteous', cursive;
    font-size: 52px;
    color: #fff;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3, #dda0dd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 22px rgba(138, 43, 226, 0.45));
    letter-spacing: 2px;
}
.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    .page-title {
        font-size: 36px;
    }
    .page-subtitle {
        font-size: 16px;
    }
}
.content-section {
    padding: 80px 0;
    position: relative;
}
.content-section.alt-bg {
    background: linear-gradient(180deg, #0c1e38, #050d1a);
}
.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.content-section .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
}
.content-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #ba55d3, #8a2be2);
}
.content-card.highlight-card {
    border-color: rgba(138, 43, 226, 0.45);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(12, 30, 56, 0.9));
}
.content-card.warning-card {
    border-color: rgba(245, 158, 11, 0.45);
}
.content-card.warning-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}
.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #9932cc;
    margin: 0 auto 30px;
}
.content-icon.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.15));
    border-color: rgba(245, 158, 11, 0.45);
    color: #f59e0b;
}
.content-card h2 {
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 25px;
    text-align: center;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
.content-card p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .content-card {
        padding: 30px 20px;
    }
    .content-card h2 {
        font-size: 26px;
    }
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}
.text-content {
    max-width: 900px;
    margin: 0 auto;
}
.text-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #fff;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
@media (max-width: 768px) {
    .text-content h2 {
        font-size: 28px;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.feature-box {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.25);
}
.feature-box:hover .feature-box-icon {
    transform: scale(1.1);
    color: #ba55d3;
}
.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #9932cc;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}
.feature-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px;
}
.feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.tip-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.tip-card:hover {
    border-color: rgba(138, 43, 226, 0.45);
    transform: translateY(-5px);
}
.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #9932cc;
    margin: 0 auto 20px;
}
.tip-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: #fff;
    margin: 0 0 12px;
}
.tip-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}
.warning-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.warning-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.warning-list li::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f59e0b;
    font-size: 14px;
}
.highlight-text {
    background: rgba(138, 43, 226, 0.15);
    border-left: 4px solid #8a2be2;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
.resource-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.resource-card:hover {
    border-color: rgba(138, 43, 226, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}
.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.45);
}
.resource-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #fff;
    margin: 0 0 15px;
}
.resource-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 20px;
}
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9932cc;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.resource-link:hover {
    color: #ba55d3;
}
.resource-link i {
    font-size: 12px;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}
.commitment-item {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.commitment-item:hover {
    border-color: rgba(138, 43, 226, 0.45);
}
.commitment-item i {
    font-size: 36px;
    color: #9932cc;
    margin-bottom: 15px;
}
.commitment-item h4 {
    font-family: 'Righteous', cursive;
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px;
}
.commitment-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.feature-list li i {
    color: #22c55e;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.tips-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .tips-list-grid {
        grid-template-columns: 1fr;
    }
}
.tips-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}
.tips-list-item:hover {
    border-color: rgba(138, 43, 226, 0.45);
}
.tip-number {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    color: #9932cc;
    opacity: 0.7;
    flex-shrink: 0;
}
.tip-content h4 {
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
}
.tip-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}
.contact-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(12, 30, 56, 0.9));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
}
.contact-card h2 {
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 20px;
}
.contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px;
}
.contact-email {
    display: inline-block;
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #9932cc;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.contact-email:hover {
    color: #ba55d3;
}
.contact-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}
.last-updated {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 25px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.25);
}
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
    .contact-card h2 {
        font-size: 26px;
    }
    .contact-email {
        font-size: 20px;
    }
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-content .intro-text {
    font-size: 18px;
    line-height: 1.9;
}
.legal-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 30px;
    color: #fff;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legal-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #9932cc;
    margin: 30px 0 15px;
}
.legal-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
.legal-content p strong {
    color: #fff;
}
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
}
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 24px;
    }
    .legal-content h3 {
        font-size: 18px;
    }
    .legal-content .intro-text {
        font-size: 16px;
    }
}
.auth-section {
    min-height: calc(100vh - 200px);
    padding: 60px 0 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    position: relative;
    overflow: hidden;
}
.auth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.auth-wrapper {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
}
.auth-card {
    background: rgba(12, 30, 56, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 28px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #ba55d3, #8a2be2);
}
@media (max-width: 600px) {
    .auth-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
}
.auth-header {
    text-align: center;
    margin-bottom: 35px;
}
.auth-logo {
    margin-bottom: 25px;
}
.auth-logo img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(138, 43, 226, 0.45));
}
.auth-title {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    color: #fff;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}
.auth-subtitle a {
    color: #9932cc;
    font-weight: 600;
    transition: color 0.3s ease;
}
.auth-subtitle a:hover {
    color: #ba55d3;
}
@media (max-width: 600px) {
    .auth-title {
        font-size: 24px;
    }
}
.auth-form {
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper > i:first-child {
    position: absolute;
    left: 18px;
    color: rgba(138, 43, 226, 0.7);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}
.input-wrapper input,
.input-wrapper select {
    width: 100%;
    background: rgba(5, 13, 26, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 14px;
    padding: 16px 50px 16px 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}
.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: #8a2be2;
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.15);
    background: rgba(5, 13, 26, 1);
}
.input-wrapper.select-wrapper select {
    padding-right: 20px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239932cc'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 24px;
}
.input-wrapper select option {
    background: #0c1e38;
    color: #fff;
}
.toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: rgba(138, 43, 226, 0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 2;
}
.toggle-password:hover {
    color: #9932cc;
}
.error-message {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 8px;
    min-height: 16px;
}
.password-strength {
    margin-top: 12px;
    display: none;
}
.password-strength.show {
    display: block;
}
.strength-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.strength-fill.weak {
    width: 33%;
    background: #ef4444;
}
.strength-fill.medium {
    width: 66%;
    background: #f59e0b;
}
.strength-fill.strong {
    width: 100%;
    background: #22c55e;
}
.strength-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.strength-text.weak {
    color: #ef4444;
}
.strength-text.medium {
    color: #f59e0b;
}
.strength-text.strong {
    color: #22c55e;
}
.checkbox-group {
    margin-top: 25px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(5, 13, 26, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}
.checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-color: #8a2be2;
}
.checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}
.checkbox-label input:checked ~ .checkmark::after {
    opacity: 1;
    transform: scale(1);
}
.checkbox-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}
.checkbox-text a {
    color: #9932cc;
    font-weight: 600;
    transition: color 0.3s ease;
}
.checkbox-text a:hover {
    color: #ba55d3;
}
.btn-auth-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 18px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.btn-auth-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.65);
    transform: translateY(-2px);
}
.btn-auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-auth-submit .btn-loader {
    font-size: 18px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(138, 43, 226, 0.25);
}
.auth-divider span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.auth-footer {
    text-align: center;
}
.auth-footer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.auth-link {
    color: #9932cc;
    font-weight: 600;
    transition: color 0.3s ease;
}
.auth-link:hover {
    color: #ba55d3;
}
.auth-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.deco-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8a2be2, transparent);
    top: -150px;
    right: -100px;
}
.deco-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #9932cc, transparent);
    bottom: -100px;
    left: -50px;
}
.deco-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ba55d3, transparent);
    top: 50%;
    right: -75px;
}
.profile-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    min-height: calc(100vh - 200px);
    position: relative;
}
.profile-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.profile-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}
.profile-header-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(12, 30, 56, 0.9));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}
.profile-title {
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.profile-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .profile-header-card {
        padding: 30px 20px;
    }
    .profile-title {
        font-size: 26px;
    }
}
.profile-info-card {
    background: rgba(12, 30, 56, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.45);
    flex-shrink: 0;
}
.profile-details {
    flex: 1;
    min-width: 200px;
}
.profile-email {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #fff;
    margin: 0 0 8px;
    word-break: break-all;
}
.profile-joined {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.profile-status {
    flex-shrink: 0;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}
.status-badge.status-pending {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #f59e0b;
}
.status-badge.status-review {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.45);
    color: #3b82f6;
}
.status-badge.status-verified {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #22c55e;
}
@media (max-width: 600px) {
    .profile-info-card {
        flex-direction: column;
        text-align: center;
    }
    .profile-details {
        min-width: 100%;
    }
}
.profile-card {
    background: rgba(12, 30, 56, 0.85);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}
.profile-card-header {
    background: rgba(138, 43, 226, 0.1);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding: 20px 30px;
}
.profile-card-header h3 {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-card-header h3 i {
    color: #9932cc;
    font-size: 20px;
}
.profile-card-body {
    padding: 30px;
}
@media (max-width: 600px) {
    .profile-card-header {
        padding: 18px 20px;
    }
    .profile-card-body {
        padding: 20px;
    }
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.detail-item {
    text-align: center;
}
.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.detail-value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    word-break: break-all;
}
.detail-value.detail-pending {
    color: #f59e0b;
}
.verification-status {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
}
.verification-status.status-reviewing {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
}
.status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.status-icon.status-icon-pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}
.status-icon.status-icon-review {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}
.status-text {
    font-size: 16px;
    font-weight: 600;
    color: #f59e0b;
}
.verification-status.status-reviewing .status-text {
    color: #3b82f6;
}
.kyc-card {
    border-color: rgba(138, 43, 226, 0.4);
}
.kyc-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 30px;
    text-align: center;
}
.kyc-form .form-row {
    margin-bottom: 20px;
}
.kyc-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .kyc-form .form-row-2 {
        grid-template-columns: 1fr;
    }
}
.kyc-form .form-group {
    margin-bottom: 0;
}
.btn-kyc-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.btn-kyc-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.65);
    transform: translateY(-2px);
}
.btn-kyc-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.review-card {
    border-color: rgba(59, 130, 246, 0.45);
}
.review-content {
    text-align: center;
    padding: 30px 20px;
}
.review-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #3b82f6;
    margin: 0 auto 25px;
    animation: pulse-review 2s ease-in-out infinite;
}
@keyframes pulse-review {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
}
.review-content h4 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #3b82f6;
    margin: 0 0 20px;
}
.review-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #050d1a, #0c1e38);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(75, 0, 130, 0.25));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 25px;
}
.page-badge i {
    color: #ba55d3;
    font-size: 16px;
}
.page-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.page-title {
    font-family: 'Righteous', cursive;
    font-size: 52px;
    color: #fff;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3, #dda0dd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 22px rgba(138, 43, 226, 0.45));
    letter-spacing: 2px;
}
.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    .page-title {
        font-size: 36px;
    }
    .page-subtitle {
        font-size: 16px;
    }
}
.content-section {
    padding: 80px 0;
    position: relative;
}
.content-section.alt-bg {
    background: linear-gradient(180deg, #0c1e38, #050d1a);
}
.content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.content-section .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
}
.content-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.25);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #ba55d3, #8a2be2);
}
.content-card.highlight-card {
    border-color: rgba(138, 43, 226, 0.45);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(12, 30, 56, 0.9));
}
.content-card.warning-card {
    border-color: rgba(245, 158, 11, 0.45);
}
.content-card.warning-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}
.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #9932cc;
    margin: 0 auto 30px;
}
.content-icon.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.15));
    border-color: rgba(245, 158, 11, 0.45);
    color: #f59e0b;
}
.content-card h2 {
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 25px;
    text-align: center;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
.content-card p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .content-card {
        padding: 30px 20px;
    }
    .content-card h2 {
        font-size: 26px;
    }
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}
.text-content {
    max-width: 900px;
    margin: 0 auto;
}
.text-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #fff;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
@media (max-width: 768px) {
    .text-content h2 {
        font-size: 28px;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.feature-box {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.25);
}
.feature-box:hover .feature-box-icon {
    transform: scale(1.1);
    color: #ba55d3;
}
.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #9932cc;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}
.feature-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px;
}
.feature-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.tip-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.tip-card:hover {
    border-color: rgba(138, 43, 226, 0.45);
    transform: translateY(-5px);
}
.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #9932cc;
    margin: 0 auto 20px;
}
.tip-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: #fff;
    margin: 0 0 12px;
}
.tip-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}
.warning-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.warning-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.warning-list li::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f59e0b;
    font-size: 14px;
}
.highlight-text {
    background: rgba(138, 43, 226, 0.15);
    border-left: 4px solid #8a2be2;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
.resource-card {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.resource-card:hover {
    border-color: rgba(138, 43, 226, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
}
.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.45);
}
.resource-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #fff;
    margin: 0 0 15px;
}
.resource-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 20px;
}
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9932cc;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.resource-link:hover {
    color: #ba55d3;
}
.resource-link i {
    font-size: 12px;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
@media (max-width: 1100px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}
.commitment-item {
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.commitment-item:hover {
    border-color: rgba(138, 43, 226, 0.45);
}
.commitment-item i {
    font-size: 36px;
    color: #9932cc;
    margin-bottom: 15px;
}
.commitment-item h4 {
    font-family: 'Righteous', cursive;
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px;
}
.commitment-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.feature-list li i {
    color: #22c55e;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.tips-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .tips-list-grid {
        grid-template-columns: 1fr;
    }
}
.tips-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(12, 30, 56, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.18);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}
.tips-list-item:hover {
    border-color: rgba(138, 43, 226, 0.45);
}
.tip-number {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    color: #9932cc;
    opacity: 0.7;
    flex-shrink: 0;
}
.tip-content h4 {
    font-family: 'Righteous', cursive;
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
}
.tip-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}
.contact-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(12, 30, 56, 0.9));
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
}
.contact-card h2 {
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 20px;
}
.contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px;
}
.contact-email {
    display: inline-block;
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #9932cc;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.contact-email:hover {
    color: #ba55d3;
}
.contact-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}
.last-updated {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 25px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.25);
}
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
    .contact-card h2 {
        font-size: 26px;
    }
    .contact-email {
        font-size: 20px;
    }
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-content .intro-text {
    font-size: 18px;
    line-height: 1.9;
}
.legal-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 30px;
    color: #fff;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.legal-content h3 {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    color: #9932cc;
    margin: 30px 0 15px;
}
.legal-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 20px;
}
.legal-content p strong {
    color: #fff;
}
.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
}
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 24px;
    }
    .legal-content h3 {
        font-size: 18px;
    }
    .legal-content .intro-text {
        font-size: 16px;
    }
}
.game-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.game-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.game-modal-content {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background: linear-gradient(135deg, #0c1e38, #050d1a);
    border: 2px solid rgba(138, 43, 226, 0.45);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(138, 43, 226, 0.3);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
.game-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(138, 43, 226, 0.1);
    border-bottom: 1px solid rgba(138, 43, 226, 0.25);
}
.game-modal-header h3 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #8a2be2, #ba55d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.game-modal-close {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.game-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    transform: rotate(90deg);
}
.game-modal-body {
    flex: 1;
    position: relative;
    background: #000;
}
.game-modal-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #0c1e38, #050d1a);
    z-index: 2;
}
.game-modal-loader i {
    font-size: 48px;
    color: #9932cc;
}
.game-modal-loader span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.game-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.game-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: rgba(138, 43, 226, 0.1);
    border-top: 1px solid rgba(138, 43, 226, 0.25);
    gap: 20px;
}
.game-modal-disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.game-modal-disclaimer i {
    color: #f59e0b;
    font-size: 16px;
}
.game-modal-fullscreen {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}
.game-modal-fullscreen:hover {
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}
@media (max-width: 768px) {
    .game-modal-content {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        border: none;
    }
    .game-modal-header {
        padding: 15px 20px;
    }
    .game-modal-header h3 {
        font-size: 18px;
    }
    .game-modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .game-modal-footer {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    .game-modal-disclaimer {
        text-align: center;
        font-size: 12px;
    }
    .game-modal-fullscreen {
        width: 100%;
        justify-content: center;
    }
}