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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-gradient {
    background: linear-gradient(-45deg, #3b82f6, #2563eb, #1d4ed8, #1e40af);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-700 {
    animation-delay: 0.7s;
}

/* Utility Classes */
.text-white {
    color: #ffffff;
}

.text-blue {
    color: #3b82f6;
}

.text-gradient {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background: #1d4ed8;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.3) 0%, rgba(0, 0, 0, 1) 50%, rgba(29, 78, 216, 0.3) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, transparent 50%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    max-width: 32rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
}

.mockup-bg-decoration {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite;
}

.mockup-bg-decoration-2 {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 15rem;
    height: 15rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 6s infinite;
    animation-delay: 1s;
}

.phone-mockup {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    width: 20rem;
    height: 37.5rem;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #374151, #1f2937);
    border-radius: 3rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.phone-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
}

.phone-notch {
    width: 8rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    margin: 0 auto 1rem;
}

.phone-content-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phone-content-header p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

.phone-footer {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.event-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #2563eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.event-info h4 {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.event-info p {
    color: #bfdbfe;
    font-size: 0.75rem;
}

.event-stats {
    display: flex;
    gap: 0.5rem;
}

.stat-item {
    flex: 1;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}

.stat-success {
    background: rgba(16, 185, 129, 0.2);
}

.stat-info {
    background: rgba(59, 130, 246, 0.2);
}

.stat-item p {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-success p {
    color: #10b981;
}

.stat-info p {
    color: #3b82f6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000000, #111827);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.feature-showcase {
    margin-bottom: 5rem;
}

.showcase-card {
    background: linear-gradient(to right, rgba(29, 78, 216, 0.2), rgba(29, 78, 216, 0.1));
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase-card {
        flex-direction: row;
    }
}

.showcase-content {
    flex: 1;
}

.showcase-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.showcase-icon {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.showcase-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.showcase-content p {
    font-size: 1.125rem;
    color: #d1d5db;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #3b82f6;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #111827, #000000);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #374151, #1f2937);
    border: 1px solid #374151;
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.screenshot-image {
    aspect-ratio: 9/16;
    overflow: hidden;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
}

.screenshot-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    
}

.screenshot-card:hover .screenshot-image img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-content {
    opacity: 1;
}

.screenshot-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.screenshot-content p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* Event Types Section */
.event-types {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000000, #111827);
}

.event-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .event-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.event-type-card {
    position: relative;
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.event-type-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.event-type-card.starter {
    border-color: rgba(34, 197, 94, 0.5);
}

.event-type-card.starter:hover {
    border-color: rgba(34, 197, 94, 0.8);
}

.event-type-card.essential {
    border-color: rgba(59, 130, 246, 0.5);
}

.event-type-card.essential:hover {
    border-color: rgba(59, 130, 246, 0.8);
}

.event-type-card.premium {
    border-color: rgba(147, 51, 234, 0.5);
}

.event-type-card.premium:hover {
    border-color: rgba(147, 51, 234, 0.8);
}

.event-type-card.elite {
    border-color: rgba(249, 115, 22, 0.5);
}

.event-type-card.elite:hover {
    border-color: rgba(249, 115, 22, 0.8);
}

.event-type-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.event-type-card:hover .event-type-icon {
    transform: scale(1.1);
}

.event-type-icon.starter {
    background: linear-gradient(to right, #22c55e, #16a34a);
}

.event-type-icon.essential {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

.event-type-icon.premium {
    background: linear-gradient(to right, #9333ea, #7c3aed);
}

.event-type-icon.elite {
    background: linear-gradient(to right, #f97316, #ea580c);
}

.event-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.event-type-card p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #1e3a8a, #1e40af, #1e3a8a);
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary {
    background: white;
    color: #1e40af;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-cta-primary:hover {
    background: #f3f4f6;
}

.btn-cta-secondary {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0;
    border-top: 1px solid #374151;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}