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

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --accent-color: #FFC125;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --border-color: #1a1a1a;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFC125 100%);
    --gradient-text: linear-gradient(135deg, #FFD700 0%, #ffffff 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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

section > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 20px;
    overflow-y: auto;
    max-height: 100vh;
}

@media (max-width: 768px) {
    section > .container {
        max-height: none;
        overflow-y: visible;
        padding: 2rem 15px;
        height: auto;
    }
}

.about > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 20px;
    overflow-y: auto;
    max-height: 100vh;
}

@media (max-width: 768px) {
    .about > .container {
        max-height: none;
        overflow-y: visible;
        padding: 2rem 15px;
        height: auto;
    }
}

.social > .container {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 3rem 20px 2rem;
    overflow: visible;
    max-height: 100vh;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .social > .container {
        max-height: none;
        min-height: auto;
        height: auto;
        padding: 2rem 15px;
        overflow: visible;
    }
}

.how-to-start > .container {
    height: auto;
    display: block;
    padding: 2rem 20px;
    overflow: visible;
    max-height: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.hero .hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.account-btn {
    background: var(--gradient);
    padding: 0.6rem 1.8rem;
    border-radius: 6px;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    isolation: isolate;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ChatGPT Image 23. Nov. 2025, 13_02_58.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        max-height: none;
        height: auto;
        padding: 2rem 0;
        overflow: visible;
    }
}

.hero-nav {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    z-index: 10;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 5px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-nav {
        display: none;
    }
}

.hero-nav-link {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 
        0 0 1px rgba(255, 0, 0, 0.5),
        0 0 2px rgba(0, 255, 255, 0.5),
        0 0 3px rgba(255, 0, 0, 0.3),
        0 0 4px rgba(0, 255, 255, 0.3);
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.4)) 
            drop-shadow(0 0 2px rgba(0, 255, 255, 0.4));
    white-space: nowrap;
}

.hero-nav-link:hover {
    color: #ffffff;
    text-shadow: 
        0 0 2px rgba(255, 0, 0, 0.7),
        0 0 4px rgba(0, 255, 255, 0.7),
        0 0 6px rgba(255, 0, 0, 0.5),
        0 0 8px rgba(0, 255, 255, 0.5);
    filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.6)) 
            drop-shadow(0 0 4px rgba(0, 255, 255, 0.6));
    transform: translateY(-2px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.cta-wrapper {
    margin-top: 1rem;
}

.cta-button {
    background: var(--gradient);
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    min-width: 120px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1), height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.online-counter {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.counter-content h3 {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.counter-number {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.counter-content p {
    color: var(--text-secondary);
    margin: 0.8rem 0;
    font-size: 1rem;
}

.counter-description {
    font-size: 1rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.about {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    isolation: isolate;
    z-index: 1;
}

@media (max-width: 768px) {
    .about {
        min-height: auto;
        max-height: none;
        height: auto;
        overflow: visible;
        padding: 2rem 0;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('about-2.Hu1nwB5I.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.about-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-item:hover::before {
    transform: scaleX(1);
}

.about-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.about-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.about-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.how-to-start {
    min-height: 100vh;
    padding: 6rem 0 10rem;
    margin: 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    scroll-margin-top: 0;
    isolation: isolate;
    z-index: 2;
    margin-bottom: 180px;
    padding-top: 10px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .how-to-start {
        min-height: auto;
        margin-bottom: 0;
        padding: 3rem 0 4rem;
        overflow: visible;
    }
}

.how-to-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('start.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    padding: 0 20px;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 6rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 4rem;
}

.step-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.step-card-green {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 50%, #34ce57 100%);
    border: none;
}

.step-card-yellow {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 50%, #ffa000 100%);
    border: none;
}

.step-card-yellow h3,
.step-card-yellow p {
    color: #000000;
}

.step-card-black {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: none;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.step-logo-img {
    max-width: 120px;
    height: 100px;
    width: auto;
    object-fit: contain;
}

.step-logo-img2 {
    max-width: 120px;
    height: 100px;
    width: auto;
    object-fit: contain;
}

.step-card-black .step-logo-img {
    max-width: 400px;
    height: 100px;
}
.step-logo-img2 {
    max-width: 400px;
    height: 100px;
}

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

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-button {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.step-button:hover {
    transform: translateY(-3px);
}

.step-button-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFC125 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

.step-button-gold:hover {
    background: linear-gradient(135deg, #FFC125 0%, #FFD700 50%, #FFA500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.news {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

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

.news-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover::before {
    transform: scaleY(1);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.news-link:hover {
    color: var(--accent-color);
}

.social {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    isolation: isolate;
    z-index: 1;
}

@media (max-width: 768px) {
    .social {
        min-height: auto;
        overflow: visible;
        padding: 2rem 0;
    }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.social-card {
    background: var(--bg-card);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1;
    visibility: visible;
}

.social-icon.youtube .social-icon-img {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
}

.social-card:hover .social-icon svg {
    color: var(--text-primary);
    transform: scale(1.1);
}

.social-card:hover .social-icon-img {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-count {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-button {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.bug-report {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 3rem;
}

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

.footer {
    padding: 1.5rem 0 1rem;
    margin-top: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: block;
    position: relative;
    z-index: 0;
    margin-bottom: 0;
    flex-shrink: 0;
}

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

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.copy-email {
    background: var(--gradient);
    border: none;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.copy-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 300px;
    }

    .hero-nav {
        display: none;
    }

    .about-item,
    .step-card,
    .social-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .step-card h3,
    .about-item h3,
    .social-card h3 {
        font-size: 1.2rem;
    }

    .step-card p,
    .about-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .step-button,
    .social-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    section > .container {
        padding: 2rem 15px;
    }

    .decorative-img {
        max-width: 100px;
        opacity: 0.3;
    }

    .page-nav {
        right: 10px;
        gap: 0.8rem;
    }

    .page-nav {
        display: none;
    }
}

/* Small Devices */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .decorative-img {
        max-width: 150px;
        opacity: 0.4;
    }
}

/* Medium Devices (tablets, 769px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decorative-img {
        max-width: 200px;
    }
}

/* Standard Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .features-grid,
    .steps-container,
    .news-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .counter-number {
        font-size: 3.5rem;
    }

    .cta-button {
        padding: 1rem 3rem;
        font-size: 1rem;
    }

    /* Touch optimizations */
    .cta-button,
    .step-button,
    .social-button {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    .hero {
        padding: 1rem 0;
    }

    .about {
        padding: 2rem 0;
    }

    .how-to-start {
        padding: 3rem 0;
    }

    .social {
        padding: 2rem 0;
    }

    /* Footer mobile optimization */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }

    /* Section descriptions */
    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .about-footer {
        font-size: 0.9rem;
        padding: 1.5rem 1rem;
        margin: 1rem 10px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
}

body {
    overflow-y: scroll;
    scroll-behavior: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    body {
        scroll-snap-type: none;
        overflow-x: hidden;
        width: 100%;
    }

    section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }
}

section {
    position: relative;
    z-index: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Page Navigation Dots */
.page-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .page-nav {
        right: 10px;
        gap: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    text-decoration: none;
}

.nav-dot span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot:hover {
    background: rgba(255, 215, 0, 0.5);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.nav-dot.active span {
    background: var(--text-primary);
}

@media (max-width: 768px) {
    .page-nav {
        display: none;
    }

    /* Touch-friendly sizes */
    a, button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    /* Better image handling on mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    .step-logo-img,
    .social-icon-img {
        max-width: 100%;
        height: auto;
    }

    /* Improve scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    /* Better section spacing */
    section {
        min-height: auto;
        padding: 2rem 0;
        overflow: visible !important;
    }

    .hero {
        min-height: 100vh;
        padding: 1rem 0;
        overflow: visible;
    }

    .about {
        min-height: auto;
        padding: 3rem 0;
        overflow: visible !important;
    }

    .how-to-start {
        padding: 3rem 0 5rem;
        margin-bottom: 0;
        overflow: visible !important;
    }

    .social {
        min-height: auto;
        padding: 3rem 0;
        overflow: visible !important;
    }

    /* Ensure all content is visible */
    * {
        max-width: 100%;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    /* Make sure all text is readable */
    p, h1, h2, h3, h4, h5, h6, a, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 1.5rem 0;
    }
}

/* Large mobile devices (480px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .steps-container {
        gap: 2.5rem;
    }
}

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

.about-item,
.feature-card,
.step-card,
.news-card,
.social-card {
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#footer-copy {
    font-size: 14px;
    text-align: center;
    opacity: 0.8;
    margin-top: 100px;
    width: 100%;
    color: #dbdbdb;
    margin-bottom: 0px;
    padding: 10px 0;
}


.step-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.step-button .icon svg {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Decorative Images */
.decorative-img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    max-width: 300px;
    height: auto;
}

.start-top-left {
    top: 0;
    left: 0;
}

.start-top-right {
    top: 0;
    right: 0;
}

.start-bottom-left {
    bottom: 0;
    left: 0;
}

.socials-top-left {
    top: 0;
    left: 0;
}

.socials-bottom-left {
    bottom: 0;
    left: 0;
}

.about-top-left {
    top: 0;
    left: 0;
}

.about-bottom-right {
    bottom: 0;
    right: 0;
}

.payments-img {
    bottom: 0;
    right: 0;
}

@media (max-width: 768px) {
    .decorative-img {
        max-width: 150px;
        opacity: 0.4;
    }
}
