@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, #0a0000 0%, #1a0000 25%, #3a0505 50%, #1a0000 75%, #0a0000 100%);
    background-size: 300% 300%;
    animation: gradientWave 15s ease infinite;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.wave-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        transparent,
        transparent 50px,
        rgba(139, 0, 0, 0.05) 50px,
        rgba(139, 0, 0, 0.05) 100px
    );
    animation: waveMove 20s linear infinite;
    opacity: 0.5;
}

.wave-1 {
    top: -50%;
    left: -50%;
    transform: rotate(0deg);
    animation-duration: 25s;
}

.wave-2 {
    top: -30%;
    left: -70%;
    transform: rotate(45deg);
    animation-duration: 35s;
    animation-direction: reverse;
    opacity: 0.3;
}

.wave-3 {
    top: -60%;
    left: -40%;
    transform: rotate(-30deg);
    animation-duration: 30s;
    opacity: 0.4;
}

@keyframes waveMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(2deg);
    }
    50% {
        transform: translate(10%, 10%) rotate(0deg);
    }
    75% {
        transform: translate(5%, 5%) rotate(-2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.4), rgba(139, 0, 0, 0.1));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 40, 40, 0.3), rgba(100, 0, 0, 0.1));
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 80, 80, 0.3), rgba(80, 0, 0, 0.1));
    top: 40%;
    left: 30%;
    animation-delay: 10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(180, 30, 30, 0.35), rgba(60, 0, 0, 0.1));
    bottom: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(60px, -60px) scale(1.1);
    }
    66% {
        transform: translate(-40px, 50px) scale(0.9);
    }
}

.glow-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glow-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 50, 50, 0.3), rgba(255, 100, 100, 0.5), rgba(255, 50, 50, 0.3), transparent);
    animation: linePulse 8s ease-in-out infinite;
}

.line-1 {
    top: 15%;
    animation-delay: 0s;
}

.line-2 {
    top: 35%;
    animation-delay: 2s;
}

.line-3 {
    top: 55%;
    animation-delay: 4s;
}

.line-4 {
    top: 75%;
    animation-delay: 6s;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 68, 68, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 100, 100, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 50, 50, 0.18) 1px, transparent 1px),
        radial-gradient(circle at 85% 25%, rgba(200, 50, 50, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 10% 90%, rgba(255, 80, 80, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 50px 50px, 100px 100px, 70px 70px;
    background-repeat: repeat;
    animation: particlesFloat 25s linear infinite;
}

@keyframes particlesFloat {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-60px) translateX(40px);
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header_style {
    text-align: center;
    color: white;
    background: linear-gradient(90deg, rgba(74, 0, 0, 0.95) 0%, rgba(139, 0, 0, 0.95) 50%, rgba(74, 0, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #ff4444;
    position: relative;
    overflow: hidden;
}

.header_style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.header_style h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out;
}

.header_subtitle {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

main {
    flex: 1;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.img_container {
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img_container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.img_body {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.img_container:hover .img_body {
    transform: scale(1.02);
}

.description_section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 35px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(20, 20, 20, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.description_section:hover {
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.1);
}

.description_section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6666;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.description_section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6666, #ff0000);
    border-radius: 2px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ff8888;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border-left: 3px solid #ff6666;
    border-right: 3px solid #ff6666;
    background: rgba(255, 68, 68, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quote:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: scale(1.02);
}

.description_section > p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    margin-top: 20px;
}

.body_text_one {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.body_text_one:hover {
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.body_text_one h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ff6666;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.body_text_one h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6666, #ff0000);
    border-radius: 2px;
}

.body_text_one ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.body_text_one li {
    font-size: 1.1rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.body_text_one li::before {
    content: '✓';
    margin-right: 8px;
    color: #66ff66;
    font-weight: bold;
}

.body_text_one li:hover {
    background: rgba(255, 68, 68, 0.3);
    transform: translateX(5px);
}

.cards_container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

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

.card:hover::before {
    left: 100%;
}

.card_img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 2px solid #8b0000;
    transition: transform 0.3s ease;
}

.card:hover .card_img {
    transform: scale(1.05);
}

.card_content {
    padding: 20px 20px 25px;
}

.card_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.card_price {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6666;
    margin-bottom: 10px;
}

.card_sale {
    display: inline-block;
    background: #ff4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

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

.card_btn {
    background: linear-gradient(90deg, #8b0000, #cc0000);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.card_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.card_btn:hover::before {
    width: 300px;
    height: 300px;
}

.card_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    background: linear-gradient(90deg, #aa0000, #ff0000);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.free_mods_section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.free_mods_section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6666;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.free_mods_section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6666, #ff0000);
    border-radius: 2px;
}

.section_subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1rem;
}

.free_cards_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.free_card {
    background: linear-gradient(145deg, rgba(37, 37, 37, 0.9), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 320px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.free_card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.free_card_img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #8b0000;
    transition: transform 0.3s ease;
}

.free_card:hover .free_card_img {
    transform: scale(1.05);
}

.free_card_content {
    padding: 20px;
    text-align: left;
}

.free_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.free_card_desc {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.free_card_features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.free_card_features span {
    background: rgba(255, 68, 68, 0.15);
    color: #ff8888;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.free_card_features span:hover {
    background: rgba(255, 68, 68, 0.3);
    transform: scale(1.05);
}

.free_card_btn {
    background: linear-gradient(90deg, #555, #444);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.free_card_btn:hover {
    background: linear-gradient(90deg, #8b0000, #cc0000);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube_section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.youtube_section:hover {
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.1);
}

.youtube_section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ff6666;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.youtube_section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6666, #ff0000);
    border-radius: 2px;
}

.youtube_requirements {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.requirement_card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    width: 300px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement_card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.requirement_icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.requirement_card h3 {
    color: #ff6666;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.requirement_card ul {
    list-style: none;
}

.requirement_card li {
    color: #ccc;
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirement_card li::before {
    content: '✓';
    color: #66ff66;
}

.youtube_apply {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.youtube_apply:hover {
    background: rgba(255, 68, 68, 0.15);
}

.youtube_apply h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.youtube_apply p {
    color: #aaa;
    margin-bottom: 20px;
}

.apply_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.apply_btn {
    background: linear-gradient(90deg, #8b0000, #cc0000);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

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

.apply_btn:hover::before {
    left: 100%;
}

.apply_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

footer {
    background: linear-gradient(90deg, rgba(26, 0, 0, 0.95), rgba(42, 0, 0, 0.95));
    backdrop-filter: blur(10px);
    color: #888;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid #4a0000;
}

.footer_style p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 5px 0;
}

.social_links_footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.social_link_footer {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.social_link_footer:hover {
    color: #ff6666;
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

.social_links_footer span {
    color: #4a0000;
    font-size: 0.7rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000, #cc0000);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

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

@media (max-width: 768px) {
    .header_style h1 {
        font-size: 1.8rem;
    }
    
    .description_section {
        margin: 20px 15px;
        padding: 20px;
    }
    
    .description_section h2 {
        font-size: 1.5rem;
    }
    
    .quote {
        font-size: 1rem;
        padding: 10px;
    }
    
    .body_text_one h2 {
        font-size: 1.5rem;
    }
    
    .body_text_one li {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .card {
        width: 260px;
    }
    
    .free_card {
        width: 280px;
    }
    
    .youtube_section {
        padding: 20px;
        margin: 30px 15px;
    }
    
    .youtube_section h2 {
        font-size: 1.5rem;
    }
    
    .requirement_card {
        width: 100%;
        max-width: 280px;
    }
    
    .youtube_apply h3 {
        font-size: 1.2rem;
    }
    
    .apply_btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}