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

:root {
    --primary-color: #ff6600;
    --secondary-color: #00ff41;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-color: #333333;
    --accent-red: #ff0000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(90deg, var(--accent-red) 0%, #cc0000 100%);
    padding: 12px 0;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-image-top {
    display: none;
    margin-bottom: 40px;
}

.hero-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

/* Hero Image */
.hero-image {
    animation: slideInRight 0.8s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    animation: float 3s ease-in-out infinite;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

/* Social Links Section */
.social-links-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--dark-bg) 100%);
    border-top: 2px solid var(--primary-color);
}

.social-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.social-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.social-header p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.followers {
    margin-top: 20px;
    font-size: 16px;
}

.followers strong {
    color: var(--primary-color);
}

.social-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border: 2px dashed var(--secondary-color);
}

.stat-box i {
    font-size: 32px;
    color: var(--secondary-color);
}

.stat-box .number {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
}

.stat-box .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    padding: 30px;
    border: 2px dashed var(--secondary-color);
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 65, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.link-card:hover::before {
    left: 0;
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.link-card.primary {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.link-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--secondary-color);
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.carousel-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/12;
    border: 4px solid var(--primary-color);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--dark-bg) 100%);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    background: var(--dark-card);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-red) 0%, #cc0000 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-contact {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-image-top {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
    }

    .image-frame {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1;
    }

    .section-title {
        font-size: 36px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

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

    .faq-question {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .alert-content {
        font-size: 11px;
        gap: 5px;
    }

    .alert-content i {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 11px;
        gap: 6px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .link-card {
        padding: 20px;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .link-card h3 {
        font-size: 16px;
    }

    .link-card p {
        font-size: 11px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .faq-question {
        font-size: 13px;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }
}
