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

body {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 350px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-transform: uppercase;
}

.highlight {
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.cta-btn {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.7s both;
    text-transform: uppercase;
}

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

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
}

/* Categories Section */
.categories {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.category-card:hover {
    border-color: #00ff00;
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
}

.category-image {
    margin-bottom: 1.5rem;
}

.category-icon {
    font-size: 4rem;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.category-card:hover .category-icon {
    filter: grayscale(0);
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.category-card p {
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Featured Section */
.featured {
    padding: 6rem 2rem;
    background: #000;
}

.featured-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.featured-label {
    display: inline-block;
    background: #00ff00;
    color: #000;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.featured-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.featured-list {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.featured-list li:hover {
    color: #00ff00;
    padding-left: 10px;
}

.cta-btn-secondary {
    background: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn-secondary:hover {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
}

.featured-image {
    position: relative;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 4px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(28.28px); }
}

/* Why Us Section */
.why-us {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #000;
    padding: 2.5rem 2rem;
    text-align: center;
    border-left: 4px solid #00ff00;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(0, 255, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #00ff00;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 400;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn-outline:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.social-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    opacity: 0.9;
}

.separator {
    color: #00ff00;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatAround 10s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatAround {
    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); }
}

/* Responsive */
@media (max-width: 768px) {
    .category-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .social-proof {
        flex-direction: column;
        gap: 1rem;
    }

    .separator {
        display: none;
    }
}
