/* Variables */
:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --accent: #ff006e;
    --dark: #0f0f1a;
    --dark-card: #1a1a2e;
    --dark-light: #252542;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --gradient: linear-gradient(135deg, #FFD700 0%, #ff006e 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon { font-size: 2rem; }
.logo-text { 
    background: var(--gradient); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    transition: 0.3s;
    font-weight: 600;
}

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

.btn-primary {
    background: var(--gradient);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary:hover { background: var(--primary); color: #000; }

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

.login-nav-link {
    display: none; /* Hide in desktop, show in mobile if needed */
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions .btn-secondary { display: none; }
    .login-nav-link { display: block; }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content { flex: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Phone Mockup */
.hero-visual { flex: 1; display: flex; justify-content: center; }

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow), 0 0 100px rgba(255, 0, 110, 0.3);
    border: 3px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 30px;
    overflow: hidden;
    padding: 1rem;
}

.gift-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gift-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.gift-item:nth-child(1) { animation-delay: 0.2s; }
.gift-item:nth-child(2) { animation-delay: 0.4s; }
.gift-item:nth-child(3) { animation-delay: 0.6s; }

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

.gift-item img {
    width: 50px;
    height: 50px;
}

.gift-name { font-weight: 700; font-size: 1.1rem; }
.gift-effect { color: var(--primary); font-size: 0.8rem; }

/* Sections */
section { padding: 5rem 2rem; }

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Features */
.features { background: var(--dark-card); }

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

.feature-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--primary); }
.feature-card p { color: var(--text-muted); }

/* Modes */
.modes { max-width: 1200px; margin: 0 auto; }

.modes-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: #000;
}

.mode-panel { display: none; }
.mode-panel.active { display: block; }

.mode-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 20px;
}

.mode-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.mode-header h3 { margin-bottom: 0.3rem; }
.mode-header p { color: var(--text-muted); }

.mode-commands h4 { margin-bottom: 1rem; color: var(--text-muted); }

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

.command-item {
    background: var(--dark-light);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.command-item:hover { transform: scale(1.05); border: 1px solid var(--primary); }

.command-item img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.command-item span { display: block; font-weight: 700; }
.command-item small { color: var(--text-muted); font-size: 0.8rem; }

.effect-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }

/* Gifts */
.gifts { background: var(--dark-card); }

.gifts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gift-card {
    background: var(--dark-light);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.gift-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
    background: var(--dark);
    border-radius: 10px;
}

.gift-card {
    background: var(--dark-light);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.gift-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.gift-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.gift-price { color: var(--accent); font-weight: 700; }

.btn-outline {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover { background: var(--primary); color: #000; }

/* Live */
.live { max-width: 1200px; margin: 0 auto; }

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

.live-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.live-card:hover { transform: translateY(-5px); }

.live-preview {
    position: relative;
    height: 200px;
    background: #000;
}

.live-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-info { padding: 1.5rem; }
.live-info h4 { color: var(--primary); margin-bottom: 0.5rem; }
.live-info p { color: var(--text-muted); }

/* Games Grid Enhanced */
.games-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.game-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.game-card.large {
    grid-column: span 2;
    flex-direction: row;
}

.game-card.large .game-image {
    width: 40%;
    position: relative;
}

.game-card.large .game-info {
    width: 60%;
    padding: 3rem;
}

.game-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-large { font-size: 5rem; z-index: 1; }
.game-icon { font-size: 3rem; }

.game-info { padding: 2rem; }
.game-info h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary); }
.game-info p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }

.game-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.game-stats i { color: var(--primary); margin-left: 0.5rem; }

.link-more {
    color: var(--primary);
    font-weight: 700;
    transition: 0.3s;
}

.link-more:hover { margin-right: 10px; }

/* How It Works Enhanced */
.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: 0.3s;
}

.step:hover .step-icon {
    background: var(--primary);
    color: #000;
    transform: rotate(10deg);
}

.step h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

.step-arrow {
    padding-top: 25px;
    font-size: 1.5rem;
    color: var(--dark-light);
}

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

/* Download */
.download {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    text-align: center;
}

.download h2 { font-size: 3rem; margin-bottom: 1rem; }
.download > p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2rem; }

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.version { color: var(--text-muted); }

.requirements {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.requirements h4 { color: var(--primary); margin-bottom: 1rem; }
.requirements ul { text-align: right; }
.requirements li { color: var(--text-muted); margin-bottom: 0.5rem; }
.requirements li::before { content: "✓ "; color: var(--primary); }

/* Social */
.social { text-align: center; padding: 3rem 2rem; }

.social h3 { margin-bottom: 2rem; font-size: 1.5rem; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.social-link i { font-size: 1.5rem; }

.discord { background: #5865F2; }
.discord:hover { background: #4752C4; }

.youtube { background: #FF0000; }
.youtube:hover { background: #CC0000; }

.tiktok { background: #000; border: 1px solid #fff; }
.tiktok:hover { background: #333; }

.twitter { background: #1DA1F2; }
.twitter:hover { background: #0d8ecf; }

/* Footer */
footer {
    background: var(--dark-card);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-content p { color: var(--text-muted); margin-bottom: 1rem; }

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

.footer-links a { color: var(--text-muted); transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }

/* Mode Header Page */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--dark-card);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.mode-header-page {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
}

.mode-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.mode-icon-large {
    font-size: 5rem;
}

/* Mode Page */
.mode-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.mode-description {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.mode-description h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mode-description p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mode-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: var(--dark-light);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-txt {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Commands Section */
.commands-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.commands-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cat-btn {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--primary);
    color: #000;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.command-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.command-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: var(--dark);
}

.command-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

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

.command-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--dark-light);
}

.command-icon {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--dark-light);
}

.command-info {
    padding: 1rem;
}

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

.command-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.command-info code {
    display: block;
    background: var(--dark);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
    color: var(--accent);
    word-break: break-all;
}

.note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
    font-style: italic;
}

/* Games Section */
.games-section {
    padding: 5rem 2rem;
    background: var(--dark-card);
}

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

.game-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    display: block;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card.large {
    display: flex;
    flex-direction: row;
}

.game-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card.large .game-image {
    width: 200px;
    height: auto;
    min-height: 180px;
}

.game-icon {
    font-size: 4rem;
}

.game-info {
    padding: 1.5rem;
    flex: 1;
}

.game-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-commands {
    display: inline-block;
    background: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent);
}

.game-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.game-stats span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.game-stats i {
    margin-left: 0.3rem;
    color: var(--primary);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Preview Section */
.preview-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.preview-card {
    border-radius: 20px;
    overflow: hidden;
}

.preview-image {
    position: relative;
    height: 200px;
}

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

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    text-align: center;
}

.preview-overlay span {
    color: white;
    font-weight: 600;
}

/* Gifts Page */
.gifts-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.gifts-filters {
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--dark-light);
    background: var(--dark-card);
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    margin: 0 auto 1rem;
    display: block;
}

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

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

.filter-btn {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #000;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.gifts-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.page-btn.active, .page-btn:hover {
    background: var(--primary);
    color: #000;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-desc {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

/* Glassmorphism */
.feature-card, .game-card, .gift-card, .price-card {
    background: rgba(26, 26, 46, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(26, 26, 46, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 10px rgba(255, 215, 0, 0.1);
}

/* Typography */
h1, h2, h3 {
    letter-spacing: -0.5px;
}

.highlight {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Pricing Section Enhanced */
.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(15, 15, 26, 0.5) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
}

.pricing-card h3 { margin-bottom: 1.5rem; color: var(--text); }

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span { font-size: 1rem; color: var(--text-muted); }

.price-features {
    text-align: right;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.price-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.price-features li i.fa-check { color: #28a745; }
.price-features li i.fa-times { color: #dc3545; }

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pricing-card.featured { transform: none; margin: 2rem 0; }
}
