* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #19222b;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 414px; 
    margin: 0 auto;
    padding: 20px;
    background-color: #19222b;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.logo {
    height: 30px;
}

.whatsapp-icon {
    height: 24px;
}

.hero-section {
    position: relative;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coin {
    width: 30px;
    position: absolute;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-overlay {
    position: absolute;
    bottom: -50px;
    right: 20px;
    width: 150px;
}

.phone-screen {
    width: 100%;
}

.earning-section {
    text-align: center;
    margin-bottom: 50px;
}

.earning-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

.earn-button {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.advantages-section {
    margin-bottom: 30px;
}

.advantages-section h2 {
    margin-bottom: 20px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.advantage-box img {
    width: 100%;
    height: auto;
}

.steps-section {
    margin-bottom: 30px;
}

.steps-section h2 {
    margin-bottom: 20px;
    color: white;
}


.step-item {
    background-color: #001F3F;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.step-number {
    background: linear-gradient(to bottom, #0088ff, #0066ff);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.step-item p {
    color: white;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.step-item a {
    color: #0088ff;
    text-decoration: underline;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}


@media screen and (min-width: 415px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background-color: #000;
    }
    
    .container {
        width: 414px;
        border: 1px solid #333;
        border-radius: 20px;
        overflow: hidden;
    }
}

.earn-link {
    display: block;
    margin-top: 15px;
}

.earn-image {
    width: 200px; 
    height: auto;
}

.advantages-section h2,
.steps-section h2,
.about-section h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    font-weight: bold;
}

.advantages-section h2::after {
    content: 'ADVANTAGES';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 8px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}


.steps-section h2::after {
    content: 'WORKS';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 8px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}

.about-section h2::after {
    content: 'ABOUT US';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 72px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}

.title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.title-bg {
    position: absolute;
    top: -8px;
    left: -5px;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    filter: blur(0.5px);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

h2 {
    position: relative;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}
