/* GameBot WhiteLabel - Stylesheet */

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #1E3A5F;
    --accent-color: #4ECDC4;
    --dark-bg: #0A0E27;
    --text-dark: #2C3E50;
    --text-light: #E8EBF0;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1E3A5F 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    color: var(--secondary-color);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    animation: breathe 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
}

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

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 1.5rem 0 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-value.free {
    font-size: 2rem;
    font-weight: 800;
    animation: colorPulse 3s ease-in-out infinite;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.showcase-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.feature-card {
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
    display: inline-block;
    vertical-align: middle;
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.feature-card p {
    color: white;
    opacity: 0.9;
}

/* Games Showcase */
.games-showcase {
    padding: 80px 0;
    background: var(--gradient-dark);
}

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

.game-card {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-card h3 {
    padding: 1rem;
    color: white;
}

.game-card p {
    padding: 0 1rem 1.5rem;
    color: white;
    opacity: 0.8;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.game-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.game-feature h4 {
    color: white;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.game-feature img {
    width: 100%;
    max-width: 200px;
    border-radius: var(--border-radius);
}

.game-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-image {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.requirements {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.requirements h3 {
    color: white;
    margin-bottom: 1rem;
}

.requirements ul {
    list-style: none;
}

.requirements li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.projects .section-title {
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.project-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--primary-color);
}

.project-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.project-bot {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-stats span {
    opacity: 0.8;
}

.ca-link {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    word-break: break-all;
    max-width: 100%;
    box-sizing: border-box;
}

.ca-link:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05);
    opacity: 1 !important;
}

.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

.setup-pending {
    position: relative;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(78, 205, 196, 0.4);
}

.setup-badge {
    position: absolute;
    top: 5px;
    right: 15px;
    background: linear-gradient(135deg, #4ECDC4, #FF6B35);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

.setup-pending h3 {
    color: #4ECDC4;
}

.setup-pending .project-bot {
    color: rgba(255, 107, 53, 0.9);
    font-style: italic;
}

.custom-showcase {
    text-align: center;
}

.custom-showcase img {
    max-width: 400px;
    margin: 0 auto 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-left {
    text-align: center;
}

.price-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    display: block;
}

.price-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-left h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pricing-left p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.price-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.price-feature:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-feature:hover .check {
    color: white;
}


/* Security Section */
.security {
    padding: 100px 0 120px 0;
    background: var(--gradient-dark);
}

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

.security-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.security-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.security-item h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.contact .section-title {
    color: white;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover .contact-avatar {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.telegram-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.telegram-badge svg {
    width: 16px;
    height: 16px;
}

.x-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.x-badge svg {
    width: 16px;
    height: 16px;
}

.contact-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-cta {
    color: var(--primary-color);
    font-weight: 600;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin: 0 auto 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

/* Visual Enhancements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF6B35" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.stat-socials {
    align-items: center;
}

.stat-socials .hero-socials {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-socials .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.stat-socials .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

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

/* Animated Background Shapes */
.features::before,
.pricing::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    animation: float-shape 20s ease-in-out infinite;
}

.features::before {
    top: 10%;
    left: -150px;
}

.pricing::before {
    bottom: 10%;
    right: -150px;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(90deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
    75% { transform: translate(-50px, -30px) rotate(270deg); }
}

/* Card Glow Effects */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card {
    position: relative;
}

/* Upcoming Game Card Styles */
.game-card.upcoming {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05));
    border: 2px dashed rgba(255, 107, 53, 0.4);
}

.upcoming-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35, #4ECDC4);
    color: white;
    padding: 0.75rem 2rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    border-radius: 25px;
    animation: pulse 2s infinite;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.95;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Poker preview image styling */
.game-card.upcoming .poker-preview {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(30%);
    transition: opacity 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-card.upcoming:hover .poker-preview {
    opacity: 0.6;
    filter: grayscale(0%);
}

.game-card.upcoming h3 {
    padding: 1rem;
    margin: 0 0 1rem 0;
    color: white;
}

.game-card.upcoming p {
    padding: 0 1rem 1.5rem;
    color: white;
    opacity: 0.8;
}

.game-card.upcoming p strong {
    color: #FF6B35;
}

/* Number Animations - removed to prevent double animation */

/* Gradient Text */
.projects .section-title,
.contact .section-title {
    background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge Style for Project Bots */
.project-bot {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* Improved Security Grid */
.security-item {
    position: relative;
    overflow: hidden;
}

.security-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.security-item:hover::after {
    animation: shine 0.5s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Pricing Card Premium Look */
.price-header {
    position: relative;
    overflow: hidden;
}

.price-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

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

/* Contact Cards Glass Effect */
.contact-card {
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

/* FAQ Items Accordion Style */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Loading Animation for Future Dynamic Content */
@keyframes skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    background-color: #eee;
    background-image: linear-gradient(90deg, #eee, #f5f5f5, #eee);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    border-radius: 4px;
    animation: skeleton-loading 1.2s ease-in-out infinite;
}

/* Smooth Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border-radius: 3px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 20px; }
}

/* Parallax Effect Classes */
.parallax-slow {
    transition: transform 0.5s ease-out;
}

.parallax-fast {
    transition: transform 0.3s ease-out;
}

/* Premium Hover States */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Sections Position Fix */
.features,
.pricing {
    position: relative;
    overflow: hidden;
}

/* Image Enhancement */
.showcase-image,
.game-card img,
.step-image {
    transition: all 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
}

/* Image Rotation Containers - Fixed dimensions to prevent jarring */
.hero-image img.showcase-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.game-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure containers have consistent minimum heights during transitions */
.hero-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card {
    position: relative;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.game-card img {
    flex-shrink: 0;
}

.game-card .game-info {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Special case for Get Started button when active - stop animation */
.nav-menu a.cta-button.active {
    color: white !important;
    background: var(--gradient-primary);
    animation: none !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Color pulse animation for FREE text */
@keyframes colorPulse {
    0%, 100% {
        color: #4ECDC4;
        text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
    50% {
        color: var(--primary-color);
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

/* Breathing animation for Get Started button */
@keyframes breathe {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    }
    25% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.55);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.7), 0 0 40px rgba(255, 140, 0, 0.3);
    }
    75% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    }
}

/* Responsive Design */

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
    }
    
    .hero-subtitle {
        order: 1;
    }
    
    .hero-stats {
        order: 2;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .hero-cta {
        order: 3;
        margin-top: 1rem;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 1.5rem auto 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .game-feature img {
        max-width: 250px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 58, 95, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Games */
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step-image {
        max-width: 100%;
    }
    
    /* Projects - Already handled in main media query above */
    
    .custom-showcase img {
        max-width: 100%;
    }
    
    /* Security */
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact */
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Spacing */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-logo {
        height: 40px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Features */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    /* Games */
    .game-card img {
        height: auto;
    }
    
    /* Pricing */
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    /* Contact */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1rem;
    }
    
    /* Modal */
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .modal-close {
        font-size: 30px;
        top: -35px;
    }
    
    /* Animations - Reduce for mobile */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Landscape Mobile (max-height: 600px and orientation: landscape) */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .nav-menu {
        flex-direction: row;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper shadows and borders for retina */
    .feature-card,
    .game-card,
    .project-card {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .feature-card:hover,
    .game-card:hover,
    .project-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .nav-toggle {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
        min-height: auto;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
    
    .btn::after {
        content: " (" attr(href) ")";
    }
}

/* Accessibility - Focus Styles */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support (if user prefers) */
/* Dark mode is default - removed light mode support */

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 12px 16px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .game-card:hover,
    .project-card:hover,
    .security-item:hover {
        transform: none;
    }
    
    /* Make clickable areas more obvious */
    .project-bot,
    .game-card img,
    .step-image {
        border: 2px solid transparent;
    }
    
    .project-bot:active,
    .game-card img:active,
    .step-image:active {
        border-color: var(--primary-color);
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    :root {
        --max-width: 1400px;
    }
    
    .hero .container {
        gap: 6rem;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}