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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 87, 0, 0.6), rgba(230, 74, 0, 0.7));
    border-radius: 10px;
    border: 2px solid transparent;
    transition: background 0.3s ease;
    backdrop-filter: blur(5px);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 107, 26, 0.8), rgba(255, 87, 0, 0.9));
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 87, 0, 0.6) transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: linear-gradient(45deg, #000000, #220000, #440000, #000000);
    background-size: 400% 400%;
    animation: gradientAnimation 15s infinite alternate;
    color: #fff;
    line-height: 1.6;
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Header */
header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

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

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

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff5700;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Hero Effects */
.hero-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.smoke-effect {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at 20% 80%, rgba(255, 87, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(204, 51, 0, 0.08) 0%, transparent 50%);
    animation: smokeFloat 20s ease-in-out infinite alternate;
}

.fire-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff5700;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff5700;
    animation: fireFloat 8s ease-in-out infinite;
}

.fire-particle:nth-child(2) {
    left: 20%;
    animation-delay: -2s;
    animation-duration: 6s;
}

.fire-particle:nth-child(3) {
    left: 60%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.fire-particle:nth-child(4) {
    left: 80%;
    animation-delay: -6s;
    animation-duration: 7s;
}

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

@keyframes fireFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 1; }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero h1 {
    font-size: 4rem;
    color: #ff5700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #ff5700, #ff3300);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 87, 0, 0.4);
    position: relative;
    z-index: 10;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ff5700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff5700;
    color: #fff;
    transform: translateY(-3px);
}

.app-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-info span {
    color: #bbb;
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(255, 87, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 87, 0, 0.3);
}

/* Game Description Section */
.game-description {
    padding: 80px 0;
    background: transparent;
    border-top: none;
}

.game-description h2 {
    font-size: 2.5rem;
    color: #ff5700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

.section-intro {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 87, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 87, 0, 0.5);
}

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

.feature-card h3 {
    color: #ff5700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #bbb;
    line-height: 1.6;
}

.download-section {
    text-align: center;
    margin-top: 50px;
}

.download-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-download {
    background: linear-gradient(45deg, #ff5700, #ff3300);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 87, 0, 0.4);
}

.btn-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 87, 0, 0.6);
}

.download-btn {
    display: inline-block;
    background-color: #fff;
    color: #ff5700;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid transparent;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.main-download {
    background-color: #ff5700;
    color: #fff;
}

.main-download:hover {
    background-color: #e64a00;
}

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: transparent;
}

.how-to-play h2 {
    font-size: 2.5rem;
    color: #ff5700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ff5700;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    background: rgba(255, 87, 0, 0.1);
}

.step-number {
    background: linear-gradient(45deg, #ff5700, #ff3300);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 87, 0, 0.3);
}

.step-content h3 {
    color: #ff5700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.app-note {
    background: rgba(255, 87, 0, 0.1);
    border: 1px solid rgba(255, 87, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-style: italic;
}

.app-note strong {
    color: #ff5700;
}

/* Game Variants Section */
.game-variants {
    padding: 80px 0;
    background: transparent;
    border-top: none;
}

.game-variants h2 {
    font-size: 2.5rem;
    color: #ff5700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.variant-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 87, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.variant-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 87, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 87, 0, 0.2);
}

.variant-card.danger {
    border-color: rgba(255, 51, 0, 0.3);
}

.variant-card.danger:hover {
    border-color: rgba(255, 51, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 51, 0, 0.3);
}

.variant-card.extreme {
    border-color: rgba(204, 51, 0, 0.4);
    background: rgba(204, 51, 0, 0.05);
}

.variant-card.extreme:hover {
    border-color: rgba(204, 51, 0, 0.7);
    box-shadow: 0 15px 40px rgba(204, 51, 0, 0.4);
}

.variant-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 87, 0, 0.3));
}

.variant-card h3 {
    color: #ff5700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.variant-card p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 87, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.section-overlay.reverse {
    background: linear-gradient(-45deg, transparent 0%, rgba(204, 51, 0, 0.02) 50%, transparent 100%);
}

.feature-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.danger-zone {
    border-top: 1px solid rgba(255, 87, 0, 0.2);
    border-bottom: 1px solid rgba(255, 87, 0, 0.2);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 87, 0, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    animation: imageGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

.image-glow.red {
    background: radial-gradient(circle, rgba(204, 51, 0, 0.4) 0%, transparent 70%);
}

@keyframes imageGlow {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 0.8; transform: scale(1.05); }
}

.floating-image {
    animation: floatImage 4s ease-in-out infinite;
}

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

.glitch-text {
    position: relative;
    animation: glitchEffect 5s infinite;
}

@keyframes glitchEffect {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-1px, -1px); }
    92% { transform: translate(1px, 1px); }
    93% { transform: translate(-1px, 1px); }
    94% { transform: translate(1px, -1px); }
    95% { transform: translate(0); }
}

.danger-list li {
    transition: all 0.3s ease;
    cursor: pointer;
}

.danger-list li:hover {
    color: #ff5700 !important;
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255, 87, 0, 0.5);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-section.reverse .feature-row {
    direction: rtl;
}

.feature-section.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 87, 0, 0.15);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.feature-content h2 {
    font-size: 2.8rem;
    color: #ff5700;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.feature-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-content li {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

/* Partnership Section - Modern Centered Layout */
.partnership-section {
    padding: 100px 0;
    background: transparent;
    text-align: center;
}

.partnership-title {
    font-size: 2.5rem;
    color: #ff5700;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255, 87, 0, 0.3);
}

.alliance-card {
    position: relative;
    transition: transform 0.3s ease;
}

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

.alliance-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 87, 0, 0.1), rgba(204, 51, 0, 0.1));
    border-radius: 35px;
    animation: allianceGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes allianceGlow {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

.pulse-logo {
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 87, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 87, 0, 0.8)); }
}

.partner-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 87, 0, 0.1);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 87, 0, 0.2);
    backdrop-filter: blur(10px);
}

.partner-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.partner-text {
    text-align: left;
}

.partner-text h3 {
    font-size: 1.5rem;
    color: #ff5700;
    margin-bottom: 10px;
}

.partner-text p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Beta Section - Call to Action */
/* Beta Section - Apocalyptic Design */
.beta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ff5700 0%, #cc3300 50%, #ff5700 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.apocalypse {
    position: relative;
    overflow: hidden;
}

.apocalypse-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: lightning 8s infinite;
}

@keyframes lightning {
    0%, 90%, 100% { transform: translateX(-100%); opacity: 0; }
    5% { transform: translateX(100%); opacity: 1; }
    6% { transform: translateX(100%); opacity: 0; }
    7% { transform: translateX(100%); opacity: 1; }
    8% { transform: translateX(100%); opacity: 0; }
}

.danger-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 87, 0, 0.05) 10px,
        rgba(255, 87, 0, 0.05) 20px
    );
    animation: stripesMove 20s linear infinite;
}

@keyframes stripesMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.warning-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 0, 0.2) 0%, transparent 70%);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(2); opacity: 0.1; }
}

.warning-sign {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: warningBlink 1.5s infinite;
}

@keyframes warningBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.apocalypse-title {
    position: relative;
    z-index: 2;
    animation: apocalypseShake 0.5s ease-in-out infinite;
}

@keyframes apocalypseShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
}

.warning-text {
    color: #ffcccc;
    text-shadow: 0 0 10px rgba(255, 87, 0, 0.5);
}

.danger-btn {
    position: relative;
    z-index: 2;
    animation: dangerGlow 1s ease-in-out infinite alternate;
    background: linear-gradient(45deg, #fff, #ffcccc);
    border: 4px solid #ff3300;
}

@keyframes dangerGlow {
    from {
        box-shadow: 0 15px 40px rgba(255, 51, 0, 0.4), 0 0 0 0 rgba(255, 51, 0, 0.7);
        transform: scale(1);
    }
    to {
        box-shadow: 0 20px 60px rgba(255, 51, 0, 0.8), 0 0 0 15px rgba(255, 51, 0, 0);
        transform: scale(1.05);
    }
}

.urgent-note {
    color: #ffaaaa !important;
    animation: urgentBlink 2s infinite;
}

@keyframes urgentBlink {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.5; }
}

.countdown-fake {
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #ff5700;
    text-shadow: 0 0 10px rgba(255, 87, 0, 0.8);
    animation: countdownGlow 1s ease-in-out infinite alternate;
    border: 2px solid rgba(255, 87, 0, 0.5);
    padding: 15px 30px;
    border-radius: 10px;
    background: rgba(255, 87, 0, 0.1);
    backdrop-filter: blur(5px);
}

@keyframes countdownGlow {
    from { box-shadow: 0 0 10px rgba(255, 87, 0, 0.3); }
    to { box-shadow: 0 0 20px rgba(255, 87, 0, 0.8), inset 0 0 10px rgba(255, 87, 0, 0.1); }
}

.beta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.beta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.beta-btn {
    display: inline-block;
    background-color: #fff;
    color: #ff5700;
    padding: 25px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
}

.beta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background-color: #f8f8f8;
    border-color: #f8f8f8;
}

.beta-note {
    margin-top: 30px !important;
    font-size: 1rem !important;
    opacity: 0.8 !important;
}

/* Remove old styles that are no longer needed */
.screenshots, .features, .partnership, .download {
    display: none;
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .hero-effects, .apocalypse-effects {
        display: none; /* Hide complex animations on mobile */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
        max-width: 300px;
        text-align: center;
    }
    
    .app-info {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .warning-sign {
        font-size: 2.5rem;
    }
    
    .countdown-fake {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .partner-showcase {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .partner-text {
        text-align: center;
    }
    
    .beta-content h2 {
        font-size: 2.2rem;
    }
    
    .beta-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    /* Footer responsive */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        order: 2;
    }
    
    .footer-brand {
        order: 1;
        align-items: center;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
    }
    
    .footer-partnership {
        justify-content: center;
    }
    
    .partner-mini-logo {
        height: 35px;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 120px;
        justify-content: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-row {
        gap: 30px;
    }
    
    .feature-content h2 {
        font-size: 1.8rem;
    }
    
    .partnership-section, .beta-section {
        padding: 60px 0;
    }
    
    .beta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Footer extra small screens */
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-main {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
        padding: 3px 0;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .social-icon {
        font-size: 1.2rem !important;
    }
    
    .footer-bottom {
        padding-top: 15px;
        gap: 10px;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .footer-warning {
        font-size: 0.7rem !important;
    }
    
    .footer-partnership {
        font-size: 0.75rem;
    }
    
    .partner-mini-logo {
        height: 30px;
    }
}

/* Footer */
footer {
    background: transparent;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 87, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 87, 0, 0.3));
}

.footer-brand h3 {
    color: #ff5700;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0;
}

.footer-brand p {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #ff5700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: #ff5700;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(255, 87, 0, 0.3);
}

.footer-social h4 {
    color: #ff5700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    color: #ff5700;
    background: rgba(255, 87, 0, 0.1);
    border-color: rgba(255, 87, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 0, 0.2);
}

.social-icon {
    font-size: 1.4rem !important;
    color: #ff5700;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 87, 0, 0.8);
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 87, 0, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #bbb;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-copyright p:first-child {
    margin-bottom: 5px;
}

.footer-warning {
    color: #ff5700 !important;
    font-weight: 600;
    font-size: 0.8rem !important;
}

.footer-partnership {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    font-size: 0.85rem;
}

.partner-mini-logo {
    height: 45px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-mini-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .screenshots h2,
    .features h2,
    .download h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 20px 15px;
    }
    
    .download-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}