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

:root {
    --color-primary: #FF6B35;
    --color-secondary: #F7931E;
    --color-accent: #00D9FF;
    --color-success: #4CAF50;
    --color-bg-dark: #0A0E27;
    --color-bg-darker: #060918;
    --color-bg-light: #1A1F3A;
    --color-text: #FFFFFF;
    --color-text-gray: #B8B8D1;
    --color-border: #2A2F4A;
    --spacing-unit: 8px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: 50%;
    right: -15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: particle-float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--color-accent);
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 70%; animation-delay: 3s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 6s; }
.particle-4 { top: 80%; left: 80%; animation-delay: 9s; }
.particle-5 { top: 30%; left: 50%; animation-delay: 12s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 100px) scale(1.1); }
    50% { transform: translate(100px, 50px) scale(0.9); }
    75% { transform: translate(-50px, 100px) scale(1.05); }
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 1; }
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 24, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-modal {
    background: linear-gradient(145deg, #1A1F3A 0%, #0A0E27 100%);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 107, 53, 0.2);
}

.age-gate-inner {
    position: relative;
}

.age-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.age-gate-modal h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.age-gate-modal p {
    color: var(--color-text-gray);
    margin-bottom: 35px;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-gray);
    border: 1px solid var(--color-border);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
}

.modern-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-diamond {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.diamond-inner {
    transform: rotate(-45deg);
    font-size: 24px;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

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

.link-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-banner {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-top {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-gray);
}

.title-main {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 107, 53, 0.3);
    animation-duration: 20s;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(0, 217, 255, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    border-color: rgba(247, 147, 30, 0.3);
    animation-duration: 10s;
}

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

.visual-center {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
    animation: pulse 3s infinite;
}

.center-icon {
    font-size: 80px;
}

.features-section {
    padding: 120px 40px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.6), rgba(10, 14, 39, 0.6));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 217, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.card-primary {
    border-color: var(--color-primary);
}

.card-accent {
    border-color: var(--color-accent);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.card-text {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.games-showcase {
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 50%, transparent 100%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-text);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.deco-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.deco-diamond {
    font-size: 28px;
    animation: pulse 2s infinite;
}

.games-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.8));
    border: 2px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
}

.game-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.game-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    animation: pulse 2s infinite;
}

.game-info {
    padding: 25px;
}

.game-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.game-labels {
    display: flex;
    gap: 10px;
}

.label {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-section {
    padding: 120px 40px;
}

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

.about-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.about-card {
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.6), rgba(10, 14, 39, 0.6));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent);
}

.about-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 14, 39, 1), transparent);
}

.about-content {
    padding: 40px;
}

.about-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.disclaimer-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 50%, transparent 100%);
}

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.8));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    padding: 60px 50px;
}

.disclaimer-header-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-border);
}

.disclaimer-icon {
    font-size: 60px;
}

.disclaimer-label {
    display: block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.disclaimer-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
}

.disclaimer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.disclaimer-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.item-icon-box {
    font-size: 36px;
    flex-shrink: 0;
}

.item-content {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.item-content strong {
    color: var(--color-text);
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-section {
    padding: 120px 40px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: linear-gradient(145deg, rgba(26, 31, 58, 0.6), rgba(10, 14, 39, 0.6));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 60px;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-intro {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.detail-icon {
    font-size: 32px;
}

.detail-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-text);
}

.detail-text p {
    font-size: 14px;
    color: var(--color-text-gray);
}

.contact-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-list ul {
    list-style: none;
}

.contact-list li {
    padding: 10px 0;
    padding-left: 25px;
    color: var(--color-text-gray);
    position: relative;
    font-size: 15px;
}

.contact-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.form-header p {
    font-size: 14px;
    color: var(--color-text-gray);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.submit-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(5px);
}

.badges-section {
    padding: 80px 40px;
}

.badges-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: scale(1.1);
}

.badge-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.badge-item:hover img {
    filter: grayscale(0%);
}

.main-footer {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3) 0%, rgba(10, 14, 39, 1) 50%);
    border-top: 1px solid var(--color-border);
    padding: 80px 40px 40px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.footer-newsletter h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.footer-links {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
}

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

.link-column a {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin-bottom: 30px;
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-gray);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        height: 400px;
    }

    .visual-ring.ring-1 { width: 350px; height: 350px; }
    .visual-ring.ring-2 { width: 270px; height: 270px; }
    .visual-ring.ring-3 { width: 190px; height: 190px; }
    .visual-center { width: 140px; height: 140px; }
    .center-icon { font-size: 60px; }

    .hero-description {
        margin: 0 auto 40px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .about-card-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .title-main {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-banner {
        padding: 60px 20px;
    }

    .title-top {
        font-size: 24px;
    }

    .title-main {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .showcase-title {
        font-size: 36px;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}


.content {
    padding: 40px 10%;
}

.content-block {}

.content-block h2 {
    color: #d18b08;
}

.content-block p,
ul {
    color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: rgba(0, 0, 0, 0);
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a{
    text-decoration: none;
    color: white;
}
