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

:root {
    --primary-color: #ff6200;
    --secondary-color: #000000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #ff6200 0%, #ff8c00 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

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

.btn-download-nav {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 98, 0, 0.4);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(255, 98, 0, 0.1) 100%),
        url('hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    background-blend-mode: normal;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(26, 26, 26, 0.6) 40%,
        rgba(255, 98, 0, 0.05) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 98, 0, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 98, 0, 0.5);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 98, 0, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

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

/* Hero iPhone Mockup - Smaller on Desktop */
.hero-iphone .iphone-frame {
    width: 300px;
    height: 615px;
}

.hero-iphone .iphone-notch {
    width: 140px;
    height: 26px;
}

.hero-iphone {
    animation: floatHero 8s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.section-description {
    font-size: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--text-dark);
    font-weight: 400;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 98, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.feature-description {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 400;
}

/* Poker Section */
.poker-section {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.poker-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.poker-image {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* iPhone Mockup */
.iphone-mockup {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 60px rgba(255, 98, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

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

.iphone-frame {
    position: relative;
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        inset 0 0 6px rgba(255, 255, 255, 0.1),
        0 0 0 2px #1a1a1a,
        0 0 0 6px #2d2d2d,
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 3;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.1);
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
}

.iphone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 50%;
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
    z-index: 1;
}

.poker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iphone-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 3;
}

/* Glow effect on hover */
.iphone-mockup:hover {
    filter: drop-shadow(0 20px 80px rgba(255, 98, 0, 0.6));
}

.iphone-mockup:hover .iphone-frame {
    box-shadow: 
        inset 0 0 6px rgba(255, 255, 255, 0.2),
        0 0 0 2px #1a1a1a,
        0 0 0 6px #2d2d2d,
        0 0 30px rgba(255, 98, 0, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.poker-text {
    order: 1;
}

.poker-section .section-title {
    text-align: left;
    color: var(--text-light);
    margin-bottom: 30px;
}

.poker-description {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
}

.poker-features {
    margin-bottom: 40px;
}

.poker-feature {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.poker-feature h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.poker-feature p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.step-description {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 400;
}

.download-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-cta-text {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.download-cta .cta-buttons {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 18px;
    opacity: 0.8;
    font-weight: 400;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    font-weight: 400;
}

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

.footer-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
    letter-spacing: 1px;
}

.footer-download-btn:hover {
    transform: translateY(-2px);
}

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

.footer-disclaimer {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto 15px;
    font-weight: 400;
}

.footer-copyright {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 400;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 1000;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 24px;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 98, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
}

.mobile-nav.active .nav-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav.active .nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active .nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav.active .nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav.active .nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav .nav-link:hover {
    color: var(--primary-color);
    padding-left: 15px;
    background: rgba(255, 98, 0, 0.1);
}

.mobile-nav .btn-download-nav {
    display: block;
    margin-top: 30px;
    text-align: center;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 600;
    border: none;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active .btn-download-nav {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.mobile-nav .btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 98, 0, 0.4);
}

.mobile-menu-header {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-header .logo {
    height: 40px;
}

.mobile-menu-header .logo-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 26px;
    }
    
    .poker-content {
        grid-template-columns: 1fr;
    }
    
    .poker-image {
        order: 1;
    }
    
    .poker-text {
        order: 2;
    }
    
    .poker-section .section-title {
        text-align: center;
    }
    
    .iphone-frame {
        width: 280px;
        height: 570px;
    }
    
    .iphone-notch {
        width: 130px;
        height: 24px;
    }
    
    .hero-iphone .iphone-frame {
        width: 320px;
        height: 650px;
    }
    
    .hero-iphone .iphone-notch {
        width: 150px;
        height: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .badge {
        text-align: center;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .iphone-frame {
        width: 240px;
        height: 490px;
        border-radius: 35px;
        padding: 10px;
    }
    
    .iphone-notch {
        width: 110px;
        height: 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .iphone-screen {
        border-radius: 28px;
    }
    
    .iphone-mockup {
        animation: float 8s ease-in-out infinite;
    }
    
    .hero-iphone .iphone-frame {
        width: 260px;
        height: 530px;
    }
    
    .hero-iphone .iphone-notch {
        width: 120px;
        height: 22px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-text > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.cta-buttons {
    animation-delay: 0.8s;
}

