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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #4ecdc4;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease 0.3s both;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInRight 1s ease 0.6s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.9s both;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounceIn 1s ease 1.2s both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0.5rem;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.business-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before, .business-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before, .business-card:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

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

.business-card:hover {
    border-color: #4ecdc4;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3, .business-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p, .business-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-text {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Dashboard */
.dashboard-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #4ecdc4;
}

.dashboard-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

/* Demo Container */
.demo-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

/* Landing Page Mockup */
.laptop-mockup {
    max-width: 800px;
    margin: 0 auto;
    background: #333;
    border-radius: 15px 15px 0 0;
    padding: 15px 15px 0 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.laptop-mockup::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: #333;
    border-radius: 0 0 10px 10px;
}

.laptop-screen {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.browser-bar {
    background: #f5f5f5;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
}

.browser-buttons {
    display: flex;
    gap: 5px;
}

.browser-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-button.red { background: #ff5f57; }
.browser-button.yellow { background: #ffbd2e; }
.browser-button.green { background: #28ca42; }

.address-bar {
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    color: #666;
    font-size: 14px;
    border: 1px solid #ddd;
    flex: 1;
    max-width: 300px;
}

.landing-preview {
    background: #f8f9fa;
    min-height: 500px;
    color: #333;
}

.landing-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-logo .logo-placeholder {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}

.tickets-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}

.landing-nav {
    background: white;
    padding: 15px 30px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
}

.nav-item {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
}

.nav-item.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.landing-content {
    padding: 30px;
}

.events-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.liga-header {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    align-self: flex-start;
}

.season {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.vs-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.team-logo-small.atlas {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.team-logo-small.pumas {
    background: linear-gradient(45deg, #003366, #004080);
}

.vs-text {
    font-weight: bold;
    font-size: 16px;
}

.event-info {
    padding: 20px;
    text-align: center;
}

.event-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.event-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.buy-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.05);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.payment-method:hover {
    border-color: #4ecdc4;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    animation: floatingElement 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatingElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

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

    .cta-button {
        display: block;
        margin: 1rem auto;
    }

    /* Mobile laptop mockup adjustments */
    .laptop-mockup {
        max-width: 100%;
        margin: 0 auto;
        padding: 10px 10px 0 10px;
        border-radius: 10px 10px 0 0;
    }

    .laptop-mockup::after {
        bottom: -15px;
        width: 150px;
        height: 15px;
        border-radius: 0 0 8px 8px;
    }

    .laptop-screen {
        border-radius: 6px;
    }

    .browser-bar {
        padding: 8px 12px;
        gap: 10px;
    }

    .browser-button {
        width: 10px;
        height: 10px;
    }

    .address-bar {
        padding: 4px 12px;
        font-size: 12px;
        max-width: 200px;
    }

    .landing-preview {
        min-height: 400px;
    }

    .landing-header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .team-logo .logo-placeholder {
        font-size: 1.2rem;
    }

    .header-actions {
        gap: 10px;
        align-self: stretch;
        justify-content: space-between;
    }

    .login-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .tickets-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .landing-nav {
        padding: 12px 20px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 12px;
    }

    .landing-content {
        padding: 20px 15px;
    }

    .events-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .search-bar {
        margin-bottom: 30px;
    }

    .search-bar input {
        padding: 12px 40px 12px 15px;
        font-size: 14px;
    }

    .search-icon {
        right: 15px;
        font-size: 16px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .event-card {
        border-radius: 12px;
    }

    .event-image {
        height: 150px;
        padding: 15px;
    }

    .liga-header {
        font-size: 10px;
        padding: 4px 12px;
    }

    .season {
        font-size: 12px;
    }

    .vs-section {
        gap: 10px;
        margin-top: 15px;
    }

    .team-logo-small {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .vs-text {
        font-size: 14px;
    }

    .event-info {
        padding: 15px;
    }

    .event-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .event-info p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .buy-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    /* Payment methods mobile */
    .payment-methods {
        gap: 1rem;
        justify-content: center;
    }

    .payment-method {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .laptop-mockup {
        padding: 8px 8px 0 8px;
        border-radius: 8px 8px 0 0;
    }

    .browser-bar {
        padding: 6px 10px;
        gap: 8px;
    }

    .address-bar {
        font-size: 11px;
        padding: 3px 10px;
        max-width: 200px;
    }

    .landing-header {
        padding: 10px 15px;
    }

    .team-logo .logo-placeholder {
        font-size: 1rem;
    }

    .header-actions {
        gap: 8px;
    }

    .login-btn, .tickets-btn {
        font-size: 9px;
        padding: 6px 10px;
    }

    .landing-nav {
        padding: 10px 15px;
        gap: 10px;
    }

    .nav-item {
        padding: 6px 10px;
        font-size: 11px;
    }

    .landing-content {
        padding: 15px 10px;
    }

    .events-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .search-bar input {
        padding: 10px 35px 10px 12px;
        font-size: 13px;
    }

    .search-icon {
        right: 12px;
        font-size: 14px;
    }

    .event-image {
        height: 120px;
        padding: 12px;
    }

    .vs-section {
        gap: 8px;
    }

    .team-logo-small {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .vs-text {
        font-size: 12px;
    }

    .event-info {
        padding: 12px;
    }

    .event-info h3 {
        font-size: 1rem;
    }

    .buy-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
}