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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* GLOW EFFECTS */
.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-left {
    background: rgba(123, 47, 255, 0.15);
    top: 80px;
    left: -100px;
}

.glow-right {
    background: rgba(0, 255, 178, 0.1);
    top: 200px;
    right: -100px;
}

/* NAV */
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* MAIN */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    width: 100%;
    max-width: 900px;
    position: relative;
}

/* HERO */
header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.1;
}

header p {
    font-size: 18px;
    color: #aaaaaa;
}

/* SEARCH */
.search-container {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.search-container input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.search-container input:focus {
    border-color: #00FFB2;
}

.search-container button {
    padding: 16px 28px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.search-container button:hover {
    opacity: 0.85;
}

/* PLATFORMS */
.platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.platforms span {
    color: #555;
    font-size: 14px;
}

.platform-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #333;
    font-size: 13px;
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.tag:hover {
    border-color: #00FFB2;
    color: #00FFB2;
}

/* SPINNER */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    color: #aaaaaa;
    font-size: 15px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #222;
    border-top-color: #00FFB2;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* NO RESULTS */
.no-results {
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-results p {
    color: #aaaaaa;
    font-size: 15px;
}

/* RESULTS */
.results-section {
    width: 100%;
    margin-bottom: 80px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.results-section h2 {
    font-size: 22px;
    color: #ffffff;
}

.fees-disclaimer {
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}

.sort-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #333;
    background: transparent;
    color: #aaaaaa;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: #00FFB2;
    color: #00FFB2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.result-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.4s forwards;
    position: relative;
}

.result-card.placeholder {
    opacity: 0.4;
    animation: none;
}

.result-card.best-deal {
    border-color: #00FFB2;
}

.result-card:hover {
    border-color: #00FFB2;
    transform: translateY(-2px);
}

.best-badge {
    position: absolute;
    top: -12px;
    left: 16px;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-platform {
    font-size: 13px;
    color: #00FFB2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-event {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.card-meta {
    font-size: 13px;
    color: #666;
}

.card-price {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.card-btn {
    margin-top: auto;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.card-btn:hover {
    background: #00FFB2;
    color: #000;
    border-color: #00FFB2;
}

/* TRENDING */
.trending {
    width: 100%;
    margin-bottom: 80px;
}

.trending h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.trending-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 28px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.trending-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.trending-card:hover {
    border-color: #7B2FFF;
    transform: translateY(-2px);
}

.trending-emoji {
    font-size: 28px;
}

.trending-artist {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.trending-event {
    font-size: 13px;
    color: #aaaaaa;
}

.trending-date {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
}

.trending-search {
    font-size: 12px;
    color: #7B2FFF;
    margin-top: auto;
    padding-top: 8px;
}

/* HOW IT WORKS */
.how-it-works {
    width: 100%;
    margin-bottom: 80px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.step {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s;
}

.step:hover {
    border-color: #7B2FFF;
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
}

.step p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* FOOTER */
footer {
    width: 100%;
    border-top: 1px solid #1a1a1a;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: #444;
}

/* ABOUT PAGE */
.about-main {
    max-width: 700px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #00FFB2, #7B2FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 18px;
    color: #aaaaaa;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-block {
    border-left: 2px solid #7B2FFF;
    padding-left: 24px;
}

.about-block h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.about-block p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.8;
}

.about-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.about-platform-tag {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #333;
    font-size: 13px;
    color: #aaaaaa;
}

/* MOBILE */
@media (max-width: 600px) {
    nav {
        padding: 16px 20px;
    }

    header h1 {
        font-size: 36px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-container button {
        width: 100%;
    }

    footer {
        padding: 32px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}
.status-badge.cancelled { background: #ff4444; color: white; }
.status-badge.postponed { background: #ffaa00; color: black; }
.status-badge.offsale { background: #666; color: white; }

.card-cta {
    margin-top: 10px;
    font-size: 13px;
    color: #a78bfa;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.result-card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
}

.card-artists {
    font-size: 12px;
    color: #a78bfa;
    margin-bottom: 4px;
    font-weight: 500;
}