/* assets/css/style.css - Main Stylesheet */

:root {
    --color-bg: #000000;
    --color-orange-50: #fff7ed;
    --color-orange-200: #fed7aa;
    --color-orange-300: #fdba74;
    --color-orange-400: #fb923c;
    --color-orange-500: #f97316;
    --color-orange-600: #ea580c;
    --color-orange-900: #7c2d12;
    --color-orange-950: #431407;
    --color-purple-500: #a855f7;
    --color-purple-600: #9333ea;
    --color-purple-700: #7e22ce;
    --color-purple-900: #581c87;
    --color-purple-950: #3b0764;
    --color-red-400: #f87171;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
}

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

body {
    font-family: 'Courier New', monospace;
    background: var(--color-bg);
    color: var(--color-orange-50);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Creepster', cursive;
    font-weight: 900;
}

.site-wrapper {
    min-height: 100vh;
    position: relative;
}

/* Background Layer */
.background-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(88, 28, 135, 0.3), rgba(124, 45, 18, 0.2), #000);
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30l15-15-15 15-15-15 15 15zm0 0l15 15-15-15-15 15 15-15z' fill='%23ff6b00' fill-opacity='0.4'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.floating-pumpkin {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
}

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

/* Navigation */
.main-nav {
    position: relative;
    z-index: 50;
    background: linear-gradient(to right, rgba(124, 45, 18, 0.9), rgba(88, 28, 135, 0.9), rgba(124, 45, 18, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--color-orange-600);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
}

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

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

.brand-icon {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.brand-text h1 {
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--color-orange-500), var(--color-red-500), var(--color-purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.8));
}

.brand-text p {
    font-size: 0.875rem;
    color: var(--color-orange-300);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-orange-300);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--color-orange-400);
}

.nav-link.active {
    color: var(--color-orange-500);
    border-bottom-color: var(--color-orange-500);
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.8));
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-content {
    animation: fadeIn 0.6s ease-out;
}

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

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-icon {
    margin: 0 auto 1.5rem;
    color: var(--color-orange-500);
    animation: pulse 2s ease-in-out infinite;
}

.page-icon svg {
    width: 80px;
    height: 80px;
}

.page-title {
    font-size: 4rem;
    color: var(--color-orange-500);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.8));
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-orange-200);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 5rem 0;
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.05;
}

.hero-moon {
    width: 24rem;
    height: 24rem;
    color: var(--color-orange-500);
    animation: spin-slow 120s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-ghost {
    margin: 0 auto 1.5rem;
    color: var(--color-orange-500);
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-ghost svg {
    width: 80px;
    height: 80px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--color-orange-500), var(--color-red-500), var(--color-purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.9));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-orange-200);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: 'Courier New', monospace;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-orange-600), var(--color-red-600));
    color: white;
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
    border: 2px solid var(--color-orange-400);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.5);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(to right, var(--color-purple-600), var(--color-purple-700));
    color: white;
}

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

.btn-twitch {
    background: var(--color-purple-600);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-twitch:hover {
    background: var(--color-purple-700);
    transform: scale(1.05);
}

.btn-discord {
    background: linear-gradient(to right, var(--color-purple-600), var(--color-purple-700));
    color: white;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* Features Grid */
.features-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--color-orange-500);
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.8));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.8), rgba(88, 28, 135, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out forwards;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--color-orange-500);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--color-orange-500);
}

.feature-card:hover .feature-icon {
    animation: pulse 1s ease-in-out infinite;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--color-orange-400);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-orange-200);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(to right, rgba(88, 28, 135, 0.5), rgba(124, 45, 18, 0.5));
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    margin: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(234, 88, 12, 0.3);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--color-orange-500);
}

.testimonial-icon {
    color: var(--color-orange-500);
    margin-bottom: 1rem;
}

.testimonial-icon svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    color: var(--color-orange-200);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--color-orange-400);
    font-weight: 700;
}

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

.game-card {
    background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.8), rgba(88, 28, 135, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 88, 12, 0), rgba(234, 88, 12, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--color-orange-500);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
}

.game-card:hover::before {
    opacity: 1;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.game-card:hover .game-icon {
    animation: bounce 1s ease-in-out infinite;
}

.game-name {
    font-size: 1.5rem;
    color: var(--color-orange-400);
    margin-bottom: 0.75rem;
}

.game-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-orange-200);
}

.game-players svg {
    width: 20px;
    height: 20px;
}

.game-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(234, 88, 12, 0.5);
    color: var(--color-orange-300);
    font-size: 0.875rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.game-card:hover .game-details {
    max-height: 100px;
    animation: fadeIn 0.3s ease-out;
}

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

.streamer-card {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.8), rgba(124, 45, 18, 0.8));
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    transition: all 0.3s;
}

.streamer-card:hover {
    transform: scale(1.05);
    border-color: var(--color-orange-500);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
}

.streamer-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.streamer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-orange-500);
    transition: border-color 0.3s;
}

.streamer-card:hover .streamer-avatar {
    border-color: var(--color-purple-500);
}

.streamer-info {
    flex: 1;
}

.streamer-name {
    font-size: 1.5rem;
    color: var(--color-orange-400);
}

.streamer-game {
    color: var(--color-orange-300);
    font-size: 0.875rem;
}

.streaming-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--color-red-400);
    font-weight: 700;
    font-size: 0.875rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--color-red-500);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.streamer-stats {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-purple-300);
    font-weight: 700;
}

.streamer-stats svg {
    width: 16px;
    height: 16px;
}

/* Events */
.events-list {
    margin-bottom: 3rem;
}

.event-card {
    background: linear-gradient(to right, rgba(124, 45, 18, 0.8), rgba(88, 28, 135, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.event-card:hover {
    transform: scale(1.02);
    border-color: var(--color-orange-500);
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.5);
}

.event-date {
    background: var(--color-orange-600);
    color: black;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 120px;
}

.event-day {
    font-size: 2rem;
    font-weight: 900;
}

.event-month {
    font-size: 1.125rem;
    font-weight: 700;
}

.event-details {
    flex: 1;
}

.event-name {
    font-size: 2rem;
    color: var(--color-orange-400);
    margin-bottom: 0.5rem;
}

.event-game {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-orange-300);
}

.event-game svg {
    width: 20px;
    height: 20px;
}

.event-rsvp {
    opacity: 0;
    transition: opacity 0.3s;
}

.event-card:hover .event-rsvp {
    opacity: 1;
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.8), rgba(124, 45, 18, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(147, 51, 234, 0.5);
}

.schedule-card h3 {
    font-size: 2rem;
    color: var(--color-purple-400);
    margin-bottom: 1rem;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-orange-200);
    margin-bottom: 0.75rem;
}

.schedule-icon {
    font-size: 1.25rem;
}

.schedule-card p {
    color: var(--color-orange-200);
    margin-bottom: 1.5rem;
}

/* Join Page */
.join-container {
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.join-steps {
    background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.8), rgba(88, 28, 135, 0.8));
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    margin-bottom: 3rem;
}

.join-steps h3 {
    font-size: 2.5rem;
    color: var(--color-orange-400);
    text-align: center;
    margin-bottom: 2rem;
}

.join-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-orange-600);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    color: var(--color-orange-400);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-orange-200);
    margin-bottom: 1rem;
}

.join-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.8), rgba(124, 45, 18, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(147, 51, 234, 0.5);
}

.info-card h3 {
    font-size: 2rem;
    color: var(--color-orange-400);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-orange-200);
}

.check-icon {
    color: var(--color-orange-500);
    font-size: 1.25rem;
}

.info-card p {
    color: var(--color-orange-200);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(88, 28, 135, 0.5), rgba(124, 45, 18, 0.5));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(234, 88, 12, 0.5);
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--color-orange-400);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-orange-200);
    margin-bottom: 1.5rem;
}

.cta-purple {
    border-color: rgba(147, 51, 234, 0.5);
}

.cta-purple h3 {
    color: var(--color-purple-400);
}

/* Footer */
.main-footer {
    position: relative;
    z-index: 10;
    margin-top: 6rem;
    background: linear-gradient(to right, rgba(124, 45, 18, 0.9), rgba(88, 28, 135, 0.9), rgba(124, 45, 18, 0.9));
    backdrop-filter: blur(10px);
    border-top: 4px solid var(--color-orange-600);
    padding: 3rem 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    color: var(--color-orange-500);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--color-orange-200);
}

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

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

.footer-section ul li a {
    color: var(--color-orange-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--color-orange-500);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: var(--color-purple-600);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: var(--color-purple-700);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    color: var(--color-orange-400);
    border-top: 1px solid rgba(234, 88, 12, 0.5);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .games-grid,
    .streamers-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .join-step {
        flex-direction: column;
        text-align: center;
    }
}
