/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #333333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #00ff00;
    color: #000000;
}

.btn-primary:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #00ff00;
}

.btn-secondary:hover {
    background-color: #00ff00;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00ff00 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 100px;
}

.hero-text {
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-top: 150px;
}

.logo-large {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero h1 .highlight {
    color: #00ff00;
    font-size: 4.5rem;
}

.content-box {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.content-box p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-box li {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-box li:before {
    content: "•";
    color: #00ff00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.red-text {
    color: #00ff00;
    font-weight: 700;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.logo-section {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.website-url {
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 25px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* Data Tables */
.data-table {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    overflow-y: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background-color: #f8f9fa;
    color: #333333;
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table td {
    padding: 12px;
    color: #333333;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.9rem;
}

.data-table tr:hover {
    background-color: #f8f9fa;
}

.summary-row {
    background-color: #f8f9fa !important;
    font-weight: 600;
}

.summary-row td {
    border-top: 2px solid #e9ecef;
}

.summary-row small {
    color: #666666;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background-color: #000000;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #ffffff;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.more-brands {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    text-align: center;
    background-color: #000000;
}

.accent-text {
    color: #00ff00;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.services-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background-color: #00ff00;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Growth Section */
.growth {
    padding: 100px 0;
    background-color: #000000;
}

.growth h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.growth-description {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revenue-highlight {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.revenue-highlight strong {
    color: #00ff00;
}

/* Dashboard Section */
.dashboard {
    padding: 100px 0;
    background-color: #000000;
}

.dashboard h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.dashboard-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.date-selector {
    color: #333333;
    font-weight: 500;
}

.visitors {
    color: #28a745;
    font-size: 0.9rem;
}

.report-btn {
    background-color: #f8f9fa;
    color: #333333;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-change.positive {
    color: #28a745;
}

.metric-change.negative {
    color: #dc3545;
}

.chart {
    height: 150px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.chart-placeholder {
    color: #666666;
    font-size: 1.2rem;
}

.orders {
    text-align: center;
    color: #333333;
    font-size: 0.9rem;
}

/* ROAS Section */
.roas {
    padding: 100px 0;
    background-color: #000000;
}

.roas h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    text-align: center;
    background-color: #000000;
}

.stats h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.stats-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}



/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background-color: #000000;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

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

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #000000;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #cccccc;
    font-size: 0.9rem;
}

.social-link {
    color: #cccccc;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00ff00;
}

.instagram-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-text:hover {
    transform: scale(1.05);
    -webkit-text-fill-color: #00ff00;
    text-decoration: none;
}

.discord-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #5865f2 0%, #7289da 50%, #99aab5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-decoration: none;
}

.discord-text:hover {
    transform: scale(1.05);
    -webkit-text-fill-color: #00ff00;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services h2,
    .growth h2 {
        font-size: 2rem;
    }
    
    .brand-logos {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    

    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .data-table {
        overflow-x: auto;
    }
    
    .data-table table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .growth h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.data-table::-webkit-scrollbar {
    width: 8px;
}

.data-table::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.data-table::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.data-table::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
