/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #f0f8ff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    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(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

h1 { 
    font-size: 3.5rem; 
    font-family: 'Rajdhani', monospace;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: #f0f8ff;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border: 3px solid #ff6b35;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #ff6b35;
    font-family: 'Rajdhani', monospace;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    min-width: 180px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #1a1a2e;
    border-color: #ff6b35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 3px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #1a1a2e;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff8c42, #ffa500);
    color: white;
    border-color: #ff8c42;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffa500, #ff8c42);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: 22px 48px;
    font-size: 18px;
    min-width: 220px;
}

/* Header - New Design */
.header {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 3px solid #ff6b35;
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo h1 {
    color: #ff6b35 !important;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 900;
    font-family: 'Rajdhani', monospace;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-transform: none;
    letter-spacing: normal;
}

.logo-tagline {
    color: #f0f8ff;
    font-size: 0.9rem;
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
}

.nav-link {
    color: #f0f8ff;
    font-weight: 600;
    padding: 1rem 0;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1.5rem;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #ff6b35;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    min-width: 180px;
    display: none;
    z-index: 1001;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.lang-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #f0f8ff;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
    transition: 0.4s;
}

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

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

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

/* Hero Section - New Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 3rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    color: #f0f8ff;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.game-preview-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    border: 4px solid #ff6b35;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.game-preview-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.5);
}

.hero-game-image {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

/* Disclaimer Section - New Design */
.disclaimer-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.9));
    padding: 5rem 0;
    border-top: 4px solid #ff6b35;
    border-bottom: 4px solid #ff6b35;
    position: relative;
}

.prominent-disclaimer {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.95));
    border: 4px solid #ff6b35;
    border-radius: 30px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(20px);
}

.disclaimer-box {
    padding: 3rem;
    text-align: center;
}

.disclaimer-box h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

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

.disclaimer-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.disclaimer-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.disclaimer-highlight i {
    font-size: 2rem;
    color: #ff6b35;
}

.disclaimer-highlight span {
    color: #f0f8ff;
    font-weight: 700;
    font-size: 1.1rem;
}

.disclaimer-main-text {
    font-size: 1.3rem;
    color: #ff6b35;
    margin: 2rem 0;
    font-weight: 700;
    line-height: 1.6;
}

.disclaimer-sub-text {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Preview - New Design */
.about-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.6));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.section-header p {
    color: #d1d5db;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-text{
    flex: 1;
}
.about-text p {
    color: #f0f8ff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-image {
    text-align: center;
    flex: 1;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border: 3px solid #ff6b35;
    transition: all 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 35px 80px rgba(255, 107, 53, 0.5);
}

/* Featured Game - New Design */
.featured-game {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8));
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.game-image {
    text-align: center;
}

.game-img {
    width: 100%;
    /* max-width: 550px; */
    height: auto;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
    border: 4px solid #ff6b35;
    transition: all 0.5s ease;
}

.game-img:hover {
    transform: scale(1.05) rotateY(-5deg);
    box-shadow: 0 40px 100px rgba(255, 107, 53, 0.6);
}

.game-info h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.game-info p {
    color: #f0f8ff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.game-features {
    list-style: none;
    margin-bottom: 3rem;
}

.game-features li {
    color: #d1d5db;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.game-features li:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.2);
}

.game-features li i {
    color: #ff6b35;
    font-size: 1.2rem;
}

/* FAQ Section - New Design */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(22, 33, 62, 0.9);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 80px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.faq-item h4 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.faq-item h4 i {
    font-size: 1.4rem;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.faq-item p {
    color: #f0f8ff;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.faq-contact p {
    color: #f0f8ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-contact a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-contact a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Newsletter Section - New Design */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.95));
    border-top: 4px solid #ff6b35;
    border-bottom: 4px solid #ff6b35;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.newsletter-content p {
    color: #f0f8ff;
    margin-bottom: 3rem;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 20px 25px;
    border: 3px solid #ff6b35;
    border-radius: 50px;
    background: rgba(26, 26, 46, 0.9);
    color: #f0f8ff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #d1d5db;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

/* Game Page */
.page {
    display: none;
    padding: 2rem 0;
}

.page.active {
    display: block;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.page-header p {
    color: #d1d5db;
    font-size: 1.1rem;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
}

.game-embed {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border: 3px solid #ff6b35;
}

.game-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0;
    padding-top: 0;
}

.developer-notice,
.game-rules {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.developer-notice h4,
.game-rules h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.developer-notice p,
.game-rules p {
    color: #f0f8ff;
    line-height: 1.6;
}

.game-rules ul {
    list-style: none;
    margin-top: 1rem;
}

.game-rules li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-rules li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
}

/* Disclaimer Content */
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-item {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.disclaimer-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.disclaimer-item p {
    color: #f0f8ff;
    line-height: 1.6;
}

.disclaimer-item strong {
    color: #ff6b35;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-container h3 {
    color: #ff6b35;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(22, 33, 62, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.contact-item h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #f0f8ff;
    margin: 0;
}

.contact-form {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.8);
    color: #f0f8ff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Policy Content */
.policy-content,
.terms-content,
.cookies-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section,
.terms-section,
.cookies-section {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.policy-section h3,
.terms-section h3,
.cookies-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.policy-section p,
.terms-section p,
.cookies-section p {
    color: #f0f8ff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul,
.terms-section ul,
.cookies-section ul {
    list-style: none;
    margin-top: 1rem;
}

.policy-section li,
.terms-section li,
.cookies-section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section li::before,
.terms-section li::before,
.cookies-section li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background: rgba(26, 26, 46, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.cookie-type h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.cookie-type p {
    color: #f0f8ff;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 2px solid #ff6b35;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

/* Responsible Gaming Logos */
.responsible-gaming {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.responsible-gaming .rg-logo {
    width: 160px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.responsible-gaming .rg-logo:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 400;
}

.footer-section p {
    color: #f0f8ff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-disclaimer {
    background: rgba(22, 33, 62, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin: 2rem 0;
    text-align: center;
}

.disclaimer-text p {
    color: #f0f8ff;
    margin-bottom: 0.5rem;
}

.disclaimer-text strong {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-bottom p {
    color: #d1d5db;
    margin: 0;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
}

.modal.show {
    display: block;
}

.modal-content {
    background: linear-gradient(135deg, #16213e, #0f3460);
    margin: 5% auto;
    padding: 2rem;
    border: 2px solid #ff6b35;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.modal-content h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-content p {
    color: #f0f8ff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

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

.close {
    color: #ff6b35;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #ff8c42;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #d1d5db;
}

.modal-footer a {
    color: #ff6b35;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #16213e, #0f3460);
    border-top: 2px solid #ff6b35;
    padding: 1rem;
    z-index: 1500;
    box-shadow: 0 -5px 20px rgba(255, 107, 53, 0.2);
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    color: #f0f8ff;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #ff6b35;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
    }
 
    .hero-content-container,
    .about-content,
    .game-showcase {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    
    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        position: relative;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        border: 2px solid #ff6b35;
        border-radius: 15px;
        margin-top: 1rem;
        padding: 2rem;
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    
    .nav-menu li:last-child {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 10px;
        background: rgba(255, 107, 53, 0.1);
        border: 1px solid rgba(255, 107, 53, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 107, 53, 0.2);
        border-color: #ff6b35;
        transform: translateX(5px);
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Mobile auth item styling */
    .mobile-auth-item {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    /* Mobile auth buttons in menu */
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-auth-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
}
    
    .hero-content-container,
    .about-preview-content,
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-page {
        padding: 2rem 0;
    }
    
    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .faq-item h4 {
        font-size: 1.4rem;
    }
    
    .faq-item h4 i {
        font-size: 1.2rem;
        padding: 0.6rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .btn-large {
        padding: 18px 36px;
        font-size: 16px;
    }
    
    .about-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item i {
        font-size: 2rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h4 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h4 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-item h4 i {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .faq-contact p {
        font-size: 1.1rem;
    }
}

/* Hide mobile auth buttons on desktop */
.mobile-auth-buttons {
    display: none;
}

/* Extra small screens */
@media (max-width: 360px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 0.3rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-auth-buttons .btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.95));
    padding: 4rem 0;
    border-bottom: 3px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.page-header p {
    color: #f0f8ff;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page */
.about-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3), rgba(22, 33, 62, 0.3));
}
.about-page .about-content {
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.about-content {
    /* max-width: 900px; */
    margin: 0 auto;
    gap: 20px;
    display: flex;
    flex-direction: row-reverse;
}

.about-section {
    background: rgba(22, 33, 62, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.6);
}

.about-section h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-section h3 i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.about-section p {
    color: #f0f8ff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-section ul {
    list-style: none;
    margin-top: 1.5rem;
}

.about-section li {
    color: #f0f8ff;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    position: relative;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.about-section li:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.about-section li::before {
    content: '▶';
    color: #ff6b35;
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    font-size: 0.8rem;
}

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

.value-item {
    background: rgba(26, 26, 46, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.value-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.value-item h4 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-item p {
    color: #f0f8ff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3), rgba(22, 33, 62, 0.3));
}

.contact-additional {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

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

.contact-card {
    background: rgba(22, 33, 62, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.6);
}

.contact-card h4 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-card h4 i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.contact-card p {
    color: #f0f8ff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-card .btn {
    margin-top: 1rem;
}

/* Privacy Policy Page */
.privacy-policy-page {
    padding: 4rem 0;
}

/* Cookies Page */
.cookies-page {
    padding: 4rem 0;
}

/* Disclaimer Page */
.disclaimer-page {
    padding: 4rem 0;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.4;
}

/* Canvas and Game Elements */
#canvas {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.orientation-msg-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.orientation-msg-text {
    color: #ff6b35;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* Animation Classes */
.ani_hack {
    width: 100%;
    height: auto;
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Hide mobile auth buttons on desktop */
.mobile-auth-buttons {
    display: none;
}

/* Mobile-specific improvements */
@media (max-width: 1024px) {
    /* Improve touch targets */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .nav-link {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        justify-content: center;
        align-items: end;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* Improve scrolling performance */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1024px) {
    .about-content{
        flex-direction: column-reverse;
    }
    .disclaimer-box{
        padding: 0;
    }
    .about-page .about-section{
        padding: 10px;   
    }

    .responsible-gaming .rg-logo{
        width: 90px;
    }
}