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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Animated Background */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #e94560, #ff6b6b);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
    opacity: 0.3;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #00d9ff, #00ff88);
    top: 50%;
    right: -50px;
    animation-delay: -5s;
    opacity: 0.3;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ffd700, #ff9500);
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
    opacity: 0.3;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #9b59b6, #e74c3c);
    bottom: -100px;
    right: 20%;
    animation-delay: -15s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 50px;
    max-width: 900px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

/* Animated Title */
.title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glow 2s ease-in-out infinite alternate, slideIn 1s ease-out;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #e94560, 0 0 20px #e94560, 0 0 30px #e94560;
    }
    to {
        text-shadow: 0 0 20px #00d9ff, 0 0 40px #00d9ff, 0 0 60px #00d9ff;
    }
}

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

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    color: #00d9ff;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Task Info Box */
.task-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: scaleIn 0.8s ease-out 0.8s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.task-info h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.task-info p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
}

.task-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.task-list {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.task-list li {
    color: #fff;
    font-size: 1.1rem;
    margin: 10px 0;
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.task-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Buttons Container */
.buttons-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0 50px 0;
    animation: slideUp 1s ease-out 1.2s both;
    position: relative;
    z-index: 10;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Telegram Button */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #0088cc, #00aaff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    position: relative;
    overflow: hidden;
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.telegram-btn:hover::before {
    left: 100%;
}

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

.telegram-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* YouTube Button */
.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.youtube-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.youtube-btn:hover::before {
    left: 100%;
}

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

.youtube-icon {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* PROOF SUBMISSION SECTION */
.proof-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: fadeIn 1s ease-out 1s both;
    text-align: left;
}

.proof-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.proof-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
}

.proof-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proof-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #00d9ff;
    transition: all 0.3s ease;
}

.proof-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.proof-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.proof-example {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.proof-note {
    text-align: center;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Contact Section */
.contact-section {
    margin-top: 50px;
    animation: fadeIn 1s ease-out 1.5s both;
    position: relative;
    z-index: 1;
}

.contact-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-section-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    text-align: center;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366, #00ff88);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #25d366;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.contact-card-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card-text {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 700;
}

.contact-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Floating Particles */
.particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: particle-float 10s infinite;
    z-index: 0;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Telegram Dropdown */
.telegram-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.telegram-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.telegram-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    z-index: 100;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.telegram-dropdown.active .telegram-menu {
    display: block;
}

.task-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.task-link:last-child {
    border-bottom: none;
}

.task-link:hover {
    background: linear-gradient(90deg, #0088cc, #00aaff);
    color: #fff;
}

.task-link:hover .task-price {
    color: #fff;
}

.task-number {
    background: #0088cc;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.task-link:hover .task-number {
    background: #fff;
    color: #0088cc;
}

.task-name {
    font-weight: 600;
    flex: 1;
    margin: 0 15px;
    text-align: left;
    font-size: 1rem;
}

.task-price {
    font-weight: 700;
    color: #00ff88;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.task-link:hover .task-price {
    color: #fff;
    text-shadow: none;
}

.telegram-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #00aaff);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 30px 15px;
        margin: 15px;
        border-radius: 25px;
        max-width: 95%;
    }

    .subtitle {
        font-size: 1rem;
    }

    .task-info {
        padding: 20px 15px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .task-info h2 {
        font-size: 1.3rem;
    }

    .task-info p {
        font-size: 0.95rem;
    }

    .task-amount {
        font-size: 2.2rem;
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .telegram-btn, .youtube-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .proof-section {
        padding: 20px 15px;
        margin: 30px 10px;
    }

    .proof-item {
        padding: 12px 15px;
    }

    .proof-number {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .contact-section {
        margin-top: 30px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .title {
        font-size: 1.5rem;
    }

    .task-amount {
        font-size: 1.8rem;
    }
}
