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

body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 40px 20px;
    color: #fff;
    background: #1e1335;
    background: -moz-linear-gradient(45deg, #1e1335 3%, #4a3f81 68%, #4765bd 100%);
    background: -webkit-linear-gradient(45deg, #1e1335 3%, #4a3f81 68%, #4765bd 100%);
    background: linear-gradient(45deg, #1e1335 3%, #4a3f81 68%, #4765bd 100%);
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.nav {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(74, 63, 129, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(74, 63, 129, 0.5);
    text-decoration: none;
    transform: translateX(-5px);
}

a {
    color: #fab717;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fee94b;
    text-decoration: none;
}

a:visited {
    color: #fab717;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.trophy-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

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

.title {
    font-size: 2.8em;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.title span {
    color: #fab717;
}

.subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sections */
.section {
    background: rgba(74, 63, 129, 0.2);
    border: 2px solid rgba(250, 183, 23, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.section:hover {
    border-color: #fab717;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 1.5em;
    color: #fab717;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    align-items: center;
    gap: 18px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4a3f81, #4765bd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
    color: #fab717;
    flex-shrink: 0;
    border: 2px solid #fab717;
}

.step-text {
    font-size: 1.1em;
    color: #fff;
}

.step-text span {
    color: #fab717;
    font-weight: 600;
}

/* Prizes */
.prizes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.prize {
    flex: 1;
    min-width: 200px;
    background: rgba(74, 63, 129, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.prize:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.prize.gold {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.prize.silver {
    border-color: rgba(192, 192, 192, 0.5);
    background: rgba(192, 192, 192, 0.1);
}

.prize.bronze {
    border-color: rgba(205, 127, 50, 0.5);
    background: rgba(205, 127, 50, 0.1);
}

.prize-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.prize-place {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.prize.gold .prize-place { color: #FFD700; }
.prize.silver .prize-place { color: #C0C0C0; }
.prize.bronze .prize-place { color: #CD7F32; }

.prize-desc {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Rules */
.rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rule {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    color: #fff;
}

.rule-icon {
    font-size: 1.3em;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #4a3f81, #4765bd);
    border: 2px solid #fab717;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.cta-text {
    font-size: 1.8em;
    font-weight: 700;
    color: #fab717;
    margin-bottom: 8px;
}

.cta-channel {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
}

.channel-link {
    font-size: 1.3em;
    font-weight: 600;
    color: #fab717;
    padding: 10px 25px;
    border: 2px solid #fab717;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.channel-link:hover {
    background: rgba(250, 183, 23, 0.2);
    color: #fee94b;
    border-color: #fee94b;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .title {
        font-size: 2em;
    }

    .trophy-icon {
        font-size: 50px;
    }

    .section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.3em;
    }

    .prizes {
        flex-direction: column;
    }

    .prize {
        min-width: 100%;
    }

    .rules {
        grid-template-columns: 1fr;
    }

    .step {
        gap: 12px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1.1em;
    }

    .step-text {
        font-size: 1em;
    }

    .cta-text {
        font-size: 1.4em;
    }
}
