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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0033, #2d1b69, #4c1e4f, #1a0033);
    background-size: 300% 300%;
    color: #e8d5ff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 112, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    background: rgba(26, 0, 51, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #8a2be2;
    box-shadow: 0 5px 30px rgba(138, 43, 226, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #dda0dd;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(221, 160, 221, 0.6);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.logo:hover {
    color: #e6e6fa;
    text-shadow: 0 0 25px rgba(221, 160, 221, 0.9);
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: #e8d5ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(138, 43, 226, 0.1);
}

.nav-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    background: rgba(138, 43, 226, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.nav-menu a:hover .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

.nav-menu a.active {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.5);
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 0, 51, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid #8a2be2;
    border-radius: 15px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border-radius: 0;
    gap: 0;
}

.dropdown-menu a:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: none;
    box-shadow: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #dda0dd;
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 3;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #dda0dd;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
main {
    margin-top: 85px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Hero Section */
.hero {
    background: url('bg.webp') center/cover no-repeat;
    min-height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(147, 112, 219, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #dda0dd, #e6e6fa, #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(221, 160, 221, 0.3);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #e8d5ff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-primary {
    background: linear-gradient(45deg, #8a2be2, #9370db, #ba55d3);
    color: #ffffff;
    padding: 1rem 2.8rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.8), rgba(75, 0, 130, 0.8));
    border: 2px solid #dda0dd;
    border-radius: 25px;
    padding: 2.5rem;
    margin: 4rem 0;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(221, 160, 221, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

.disclaimer-section .content {
    position: relative;
    z-index: 2;
}

.disclaimer-section h2 {
    color: #dda0dd;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.disclaimer-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8d5ff;
}

.btn-secondary {
    background: transparent;
    color: #dda0dd;
    border: 2px solid #dda0dd;
    padding: 0.8rem 2.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #dda0dd, transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: #dda0dd;
    color: #1a0033;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 160, 221, 0.4);
}

/* Game Section */
.game-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(26, 0, 51, 0.3);
    border-radius: 25px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.game-section h2 {
    font-size: 2.8rem;
    color: #dda0dd;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(221, 160, 221, 0.5);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border: 3px solid #8a2be2;
    border-radius: 20px;
    margin: 0 auto;
    background: rgba(0,0,0,0.4);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(75, 0, 130, 0.2);
    border-radius: 25px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.6rem;
    color: #dda0dd;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e8d5ff;
}

/* About image styling */
.about-img-pic {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(138, 43, 226, 0.18);
    display: block;
    margin-left: auto;
    margin-right: auto;
}
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.6rem;
    color: #dda0dd;
    margin-bottom: 3rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(221, 160, 221, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 160, 221, 0.1), transparent);
    transition: left 0.6s ease;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #8a2be2;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

.review-card .stars {
    color: #dda0dd;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-card p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #e8d5ff;
}

.review-card .author {
    color: #dda0dd;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: rgba(138, 43, 226, 0.08);
    border-radius: 25px;
    margin: 3rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.6rem;
    color: #dda0dd;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.3), rgba(138, 43, 226, 0.2));
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(221, 160, 221, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 160, 221, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.4);
}

.feature-card .icon {
    font-size: 3rem;
    color: #dda0dd;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #e6e6fa;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    line-height: 1.7;
    color: #e8d5ff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.95), rgba(75, 0, 130, 0.8));
    padding: 0 0 1.5rem;
    border-top: 2px solid #8a2be2;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    fill: #8a2be2;
    opacity: 0.3;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dda0dd, transparent);
}

.footer .container {
    padding-top: 4rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #dda0dd;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.8;
    color: #e8d5ff;
    margin-bottom: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e8d5ff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section ul li a:hover {
    color: #dda0dd;
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(221, 160, 221, 0.3);
    border-radius: 50%;
    color: #dda0dd;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(138, 43, 226, 0.4);
    border-color: #dda0dd;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(221, 160, 221, 0.3);
    border-radius: 25px;
    color: #e8d5ff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(232, 213, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: #dda0dd;
    background: rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #8a2be2, #9370db);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #9370db, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.5);
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(75, 0, 130, 0.4));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(221, 160, 221, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.disclaimer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.footer-disclaimer p {
    margin: 0;
    color: #e8d5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(221, 160, 221, 0.3);
    color: #c8a2c8;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.powered-by {
    font-size: 0.9rem;
}

.highlight {
    color: #dda0dd;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.3), rgba(138, 43, 226, 0.2));
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(221, 160, 221, 0.3);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    background: rgba(26, 0, 51, 0.5);
    color: #e8d5ff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
    background: rgba(26, 0, 51, 0.7);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #8a2be2, #9370db);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.popup-content {
    background: linear-gradient(135deg, #1a0033, #2d1b69);
    border: 2px solid #8a2be2;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.5);
    backdrop-filter: blur(20px);
}

.popup-content h2 {
    color: #dda0dd;
    margin-bottom: 2rem;
    font-size: 1.9rem;
    font-weight: 700;
}

.popup-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e8d5ff;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Content Pages */
.content-page {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.content-page h1 {
    color: #dda0dd;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(221, 160, 221, 0.3);
}

.content-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.2), rgba(138, 43, 226, 0.1));
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(221, 160, 221, 0.3);
    margin-bottom: 2.5rem;
}

.content-section h2 {
    color: #dda0dd;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section h3 {
    color: #e6e6fa;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e8d5ff;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.8rem;
    color: #e8d5ff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(26, 0, 51, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s ease;
        backdrop-filter: blur(20px);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        width: 90%;
    }

    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(75, 0, 130, 0.5);
        border: none;
        margin-top: 0.5rem;
        padding: 0;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        width: 100%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-wave svg {
        height: 60px;
    }

    .footer-disclaimer {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
    }

    .disclaimer-icon {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }

    .popup-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
    }

    .game-frame {
        border-radius: 15px;
    }

    .content-section {
        padding: 2.5rem 1.5rem;
    }

    .disclaimer-section {
        padding: 2rem 1.5rem;
    }
}