/* style.css - C:\Users\its */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', Helvetica, sans-serif;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* HERO SECTION */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    border-bottom: 3px solid #ff0000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero .container {
    text-align: center;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,0,0,0.5));
}

.brand span {
    font-size: 48px;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255,0,0,0.8);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-primary {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 30px rgba(255,0,0,0.5);
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255,0,0,0.8);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
}

.btn-secondary:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary:hover .btn-icon {
    filter: brightness(0) invert(1);
}

/* BONUS SECTION */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    position: relative;
}

.bonus-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient(145deg, #1a0000, #0a0000);
    border: 1px solid rgba(255,0,0,0.2);
    box-shadow: 0 20px 40px rgba(255,0,0,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(7485%) hue-rotate(0deg) brightness(100%) contrast(120%);
    position: relative;
    z-index: 2;
}

.bonus-card h2 {
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.bonus-card p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* FEATURES SECTION */
.features {
    padding: 80px 0;
    background: #000;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(145deg, #111, #000);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.3);
    box-shadow: 0 10px 30px rgba(255,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,0,0,0.5));
}

.feature-item h3 {
    font-size: 20px;
    color: #ff0000;
    margin-bottom: 10px;
}

.feature-item p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #0a0000, #000);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,0,0,0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-size: 24px;
    font-weight: bold;
    color: #ff0000;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .brand span {
        font-size: 36px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .bonus-card {
        padding: 30px;
    }
    
    .bonus-card h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONS */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.btn-primary {
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    animation: none;
}