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

:root {
    --primary-cyan: #00f0ff;
    --primary-blue: #0066ff;
    --secondary-pink: #ff00ff;
    --accent-orange: #ff6600;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #0f0f1a;
    --border-color: rgba(0, 240, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5);
}

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

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

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: var(--glow-cyan), 0 20px 60px rgba(0, 0, 0, 0.8);
}

.age-gate-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
    pointer-events: none;
}

.age-gate-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-yes {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-color: var(--primary-cyan);
    color: #000;
}

.btn-yes:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-no {
    background: transparent;
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.btn-no:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0.5;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    position: relative;
}

.logo-bracket {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    font-weight: 700;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pulse {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-cyan);
    transition: all 0.3s;
}

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

.nav-item {
    position: relative;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 102, 255, 0.1));
    transition: width 0.3s;
    z-index: -1;
}

.nav-text {
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.nav-item:hover .nav-bg {
    width: 100%;
}

.nav-item:hover .nav-text {
    color: var(--primary-cyan);
}

.nav-cta {
    position: relative;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    cursor: pointer;
    overflow: hidden;
    margin-left: 1rem;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    transition: left 0.3s;
    z-index: 0;
}

.cta-text {
    position: relative;
    z-index: 1;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-cta:hover .cta-bg {
    left: 0;
}

.nav-cta:hover .cta-text {
    color: #000;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    z-index: 2;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns:  1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    font-size: 1.2rem;
}

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

.badge-lines {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    animation: slide 3s infinite;
}

.hero-title {
    margin-bottom: 2rem;
    position: relative;
}

.title-line-1 {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.title-line-2 {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1.1;
}

.title-glitch {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    opacity: 0.3;
    animation: glitch 4s infinite;
    pointer-events: none;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btn {
    position: relative;
    padding: 1.25rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border: none;
    color: #000;
    cursor: pointer;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: all 0.3s;
}

.btn-text, .btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    margin-left: 1rem;
    font-size: 1.5rem;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-btn:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.hero-btn:hover .btn-glow {
    opacity: 1;
}

.hero-slots {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.slot-machine {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.slot-frame {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue), var(--secondary-pink));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    border-radius: 15px;
}

.slot-machine:hover .slot-frame {
    opacity: 0.3;
}

.slot-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.slot-reels {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.slot-reel {
    width: 70px;
    height: 70px;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: spin 3s infinite;
}

.slot-reel:nth-child(2) {
    animation-delay: 0.3s;
}

.slot-reel:nth-child(3) {
    animation-delay: 0.6s;
}

.features {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s;
}

.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s;
}

.card-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.card-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.card-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.card-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.feature-card:hover .card-corner {
    width: 40px;
    height: 40px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 240, 255, 0.1);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.games {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.03), transparent);
}

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

.games-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-bracket {
    color: var(--primary-cyan);
    font-size: 2.5rem;
}

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

.game-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.game-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-blue);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--secondary-pink));
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 5px;
    z-index: 10;
    letter-spacing: 1px;
}

.game-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

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

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.game-card:hover .play-icon {
    transform: scale(1.2);
    box-shadow: var(--glow-cyan);
}

.play-text {
    font-weight: 700;
    color: var(--primary-cyan);
    letter-spacing: 2px;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.game-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.about {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

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

.about-item.reverse {
    direction: rtl;
}

.about-item.reverse > * {
    direction: ltr;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.icon-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.image-frame {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glow-cyan);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    animation: slide 3s infinite;
}

.disclaimer {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.disclaimer-box {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--glow-cyan);
}

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

.warning-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.disclaimer-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.disclaimer-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.disclaimer-item {
    position: relative;
    padding: 2rem;
}

.disc-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), transparent);
}

.disc-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.disc-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.disc-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-secondary);
}

.contact-reasons h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.contact-reasons li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.contact-reasons li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-size: 0.8rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--card-bg), var(--darker-bg));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s infinite;
    pointer-events: none;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.submit-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.submit-text {
    position: relative;
    z-index: 1;
    color: var(--primary-cyan);
    transition: color 0.3s;
    letter-spacing: 1px;
}

.submit-arrow {
    position: relative;
    z-index: 1;
    color: var(--primary-cyan);
    margin-left: 0.5rem;
    transition: color 0.3s;
}

.submit-btn:hover .submit-bg {
    transform: translateX(0);
}

.submit-btn:hover .submit-text,
.submit-btn:hover .submit-arrow {
    color: #000;
}

.badges {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.badge-item {
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.badge-frame {
    position: absolute;
    inset: 0;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s;
}

.badge-item:hover .badge-frame {
    border-color: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
}

.badge-item img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    background: var(--darker-bg);
    border-top: 2px solid var(--border-color);
    padding: 4rem 0 2rem;
    z-index: 2;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-newsletter h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
}

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

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s;
}

.input-wrapper input:focus + .input-line {
    width: 100%;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border: none;
    border-radius: 10px;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.newsletter-form .arrow {
    margin-left: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col-header {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    padding-left: 1rem;
    position: relative;
    font-weight: 500;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s;
}

.footer-col a:hover {
    color: var(--primary-cyan);
    padding-left: 1.5rem;
}

.footer-col a:hover::before {
    width: 10px;
}

.footer-bottom {
    padding-top: 2rem;
}

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

.footer-bottom p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

@keyframes spin {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    85% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(0);
    }
    95% {
        transform: translateY(-5px);
    }
}

@keyframes scan {
    0% {
        top: -100%;
    }
    100% {
        top: 200%;
    }
}

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

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

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .title-glitch {
        font-size: 3rem;
    }

    .contact-wrapper,
    .about-item,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .about-item.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hero-btn {
        clip-path: none;
        border-radius: 10px;
    }

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

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

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

.content {
    padding: 40px 10%;
}

.content-block {}

.content-block h2 {
    color: #00f0ff;
}

.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;
}
