* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

header {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #000000;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.logo .domain {
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6b6b;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #f8f8f8;
    border: 2px solid #ddd;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

.burger-menu:hover {
    background-color: #e0e0e0;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #000000;
    transition: 0.3s;
    border-radius: 3px;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
    position: relative;
    background-image: url('https://img1.wsimg.com/isteam/getty/1397086848');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.ai-icon {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.features {
    padding: 80px 0;
    background: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

/* Analytics Section */
.analytics {
    padding: 4rem 0;
    background: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.analytics-content h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ai-tag {
    background: #000000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.ai-icon {
    font-size: 1rem;
}

.analytics-list {
    list-style: none;
    margin-top: 1rem;
}

.analytics-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #000000;
}

.analytics-list li::before {
    content: "✓";
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 1rem;
}

.analytics-visual {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid #000000;
}

.data-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 120px;
    font-weight: 500;
    color: #000000;
}

.bar-fill {
    height: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    border-radius: 10px;
    position: relative;
}

.bar-fill.orange {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
}

/* Performance Stats */
.stats {
    padding: 4rem 0;
    background: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    border-radius: 15px;
    background: #000000;
    color: #ffffff;
}

.stat-card.orange {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    color: #000000;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #000000;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-section {
    padding: 40px 0;
    text-align: center;
    background: #ffffff;
}

footer {
    background: #000000;
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.powered-by {
    font-size: 0.9rem;
    opacity: 0.6;
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #000000;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    border: 1px solid #ffffff;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-buttons button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.cookie-buttons button:hover {
    background: linear-gradient(45deg, #ee5a6f, #ff6b6b);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.scroll-to-top.show {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

.scroll-to-top::before {
    content: '🏏';
    font-size: 24px;
    animation: bounce 2s infinite;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-bottom: none;
    border-right: none;
    transform: translate(-50%, -30%) rotate(45deg);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex !important;
        order: 2;
        position: relative;
        z-index: 10000;
    }

    nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #000000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        order: 3;
        width: 100%;
    }

    nav.active {
        display: block !important;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        color: #000000;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    nav a:hover {
        background-color: #f8f8f8;
        color: #ff6b6b;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .analytics-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .data-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .bar-label {
        min-width: auto;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top::before {
        font-size: 20px;
    }

    .scroll-to-top::after {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 901px) {
    .burger-menu {
        display: none !important;
    }
    
    nav {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .analytics-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero {
        padding: 40px 0;
    }
}
