/* ===== CSS Variables ===== */
:root {
    --primary: #059669;
    --primary-light: #34D399;
    --primary-dark: #047857;
    --secondary: #F59E0B;
    --secondary-light: #FBBF24;
    --accent-teal: #14B8A6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --accent-lime: #84CC16;
    --dark: #1F2937;
    --darker: #111827;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gradient-magic: linear-gradient(135deg, #059669 0%, #14B8A6 50%, #F59E0B 100%);
    --gradient-hero: linear-gradient(135deg, #1F2937 0%, #064E3B 50%, #047857 100%);
    --gradient-card: linear-gradient(145deg, rgba(5, 150, 105, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(5, 150, 105, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Bangers', cursive;
    --font-body: 'Nunito', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Magic Particles ===== */
.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gradient-magic);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 60%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; animation-duration: 21s; }
.particle:nth-child(7) { left: 80%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 90%; animation-delay: 4.5s; animation-duration: 23s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
        transform: translateY(80vh) rotate(45deg) scale(1);
    }
    90% {
        opacity: 0.4;
        transform: translateY(10vh) rotate(315deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(0);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-magic);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-glow {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(5, 150, 105, 0.4); }
    50% { box-shadow: 0 0 40px rgba(5, 150, 105, 0.7), 0 0 60px rgba(20, 184, 166, 0.3); }
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

.btn-sparkle {
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ===== Section Styling ===== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-card);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 40px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.logo-badge {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.magic-icon, .wand-icon {
    display: inline-block;
    margin: 0 10px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-the {
    display: block;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 8px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 4px 4px 0 var(--primary), 8px 8px 0 var(--accent-teal);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from { text-shadow: 4px 4px 0 var(--primary), 8px 8px 0 var(--accent-teal); }
    to { text-shadow: 4px 4px 20px var(--primary), 8px 8px 30px var(--accent-teal); }
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--secondary-light);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 4px solid var(--white);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.hero-img-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    transform: rotate(5deg);
    animation: float-card 6s ease-in-out infinite;
}

.hero-img-2 {
    bottom: 15%;
    left: 5%;
    width: 180px;
    transform: rotate(-8deg);
    animation: float-card 8s ease-in-out infinite reverse;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: fade-bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes fade-bounce {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* ===== Gathering Section ===== */
.gathering-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.gathering-section .section-title {
    text-align: center;
}

.gathering-section .section-badge {
    display: block;
    text-align: center;
}

.gathering-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 3px solid var(--primary-light);
    box-shadow: var(--shadow-card);
}

.gathering-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.info-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-magic);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.info-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-content p {
    color: var(--dark);
    font-weight: 600;
}

.gathering-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 4px solid var(--white);
    animation: float-card 6s ease-in-out infinite;
    max-width: 100%;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #D1FAE5 100%);
    position: relative;
    z-index: 1;
}

.benefits-section .section-badge,
.benefits-section .section-title {
    text-align: center;
    display: block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.benefit-card p {
    color: var(--dark);
    line-height: 1.7;
}

/* ===== New Player Section ===== */
.newplayer-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.newplayer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newplayer-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
}

.newplayer-list {
    margin-bottom: 40px;
}

.newplayer-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.newplayer-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newplayer-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 4px solid var(--primary-light);
    width: 100%;
    max-width: 450px;
}

.card-fan {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
}

.fan-card {
    position: absolute;
    width: 80px;
    height: 110px;
    background: var(--gradient-magic);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.fan-card-1 {
    transform: rotate(-15deg);
    top: 0;
    right: 40px;
}

.fan-card-2 {
    transform: rotate(0deg);
    top: 10px;
    right: 20px;
}

.fan-card-3 {
    transform: rotate(15deg);
    top: 20px;
    right: 0;
}

/* ===== Social Proof Section ===== */
.social-proof-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    z-index: 1;
}

.social-proof-section .section-badge {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    color: var(--secondary);
    display: block;
    text-align: center;
}

.social-proof-section .section-title {
    text-align: center;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.testimonial-card.featured.animate-in {
    transform: scale(1.05);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--primary);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--secondary);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #D1FAE5 0%, var(--white) 100%);
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-icon {
    font-size: 1.5rem;
}

/* ===== MTG Mana Symbol Animation (Replacing Wizard) ===== */
.mana-symbol-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: 30px;
}

.mana-orbit {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.mana-symbol {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 3;
    animation: mana-float 4s ease-in-out infinite;
}

.mana-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(5, 150, 105, 0.5));
}

@keyframes mana-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-8px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg) scale(1.08);
    }
}

.mana-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.6) 0%, rgba(5, 150, 105, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: mana-glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes mana-glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.9;
    }
}

/* Floating MTG Cards */
.floating-cards-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mtg-card {
    position: absolute;
    width: 50px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mtg-card .card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d5a3d 0%, #1a472a 50%, #0d3320 100%);
    border: 2px solid #4ade80;
    border-radius: 6px;
    position: relative;
}

.mtg-card .card-border {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 30%);
}

.mtg-card-1 {
    top: 10px;
    left: 10px;
    animation: card-orbit-1 8s ease-in-out infinite;
}

.mtg-card-2 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation: card-orbit-2 7s ease-in-out infinite;
    animation-delay: -2s;
}

.mtg-card-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: card-orbit-3 9s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes card-orbit-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(10px, -10px) rotate(-10deg);
        opacity: 1;
    }
    50% {
        transform: translate(5px, 5px) rotate(-20deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-5px, -5px) rotate(-12deg);
        opacity: 0.9;
    }
}

@keyframes card-orbit-2 {
    0%, 100% {
        transform: translateY(-50%) rotate(10deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-60%) rotate(15deg);
        opacity: 1;
    }
    66% {
        transform: translateY(-40%) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes card-orbit-3 {
    0%, 100% {
        transform: translateX(-50%) rotate(5deg);
        opacity: 0.75;
    }
    50% {
        transform: translateX(-40%) rotate(-5deg);
        opacity: 1;
    }
}

/* Sparkle particles around mana */
.sparkle-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-float 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.6s;
}

.sparkle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1.2s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.8s;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 2.4s;
}

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    20% {
        opacity: 1;
        transform: scale(1) translateY(-5px);
    }
    40% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
    60% {
        opacity: 0.8;
        transform: scale(1) translateY(-15px);
    }
    80% {
        opacity: 0.3;
        transform: scale(0.5) translateY(-20px);
    }
}

.contact-form-container {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 3px solid var(--primary-light);
}

.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 100px 20px;
    background: var(--gradient-magic);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.final-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-icon {
    font-size: 2.5rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 600;
}

.footer-divider {
    opacity: 0.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .gathering-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .gathering-image {
        order: -1;
    }
    
    .newplayer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .newplayer-visual {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mana-symbol-container {
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-img {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gathering-card {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured.animate-in {
        transform: none;
    }
    
    .stats-bar {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .card-fan {
        display: none;
    }
    
    .mana-symbol-container {
        width: 150px;
        height: 150px;
    }
    
    .mana-orbit {
        width: 80px;
        height: 80px;
    }
    
    .mana-symbol {
        width: 80px;
        height: 80px;
    }
    
    .mana-glow {
        width: 100px;
        height: 100px;
    }
    
    .mtg-card {
        width: 40px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .title-main {
        text-shadow: 2px 2px 0 var(--primary), 4px 4px 0 var(--accent-teal);
    }
    
    .logo-badge {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .mana-symbol-container {
        width: 120px;
        height: 120px;
    }
    
    .floating-cards-display {
        display: none;
    }
}

/* ===== Animation Utilities ===== */
.animate-in {
    animation: fade-in-up 0.6s ease forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}