:root {
    /* Farbpalette */
    --primary-gold: #ffd700;
    --gold-light: #fff0a3;
    --gold-dark: #e6c200;
    --dark-gray: #1a1a1a;
    --gray: #242424;
    --light-gray: #3a3a3a;
    --white: #f5f5f5;
    --text-muted: #a8a8a8;
    --purple: #6A0DAD;
    
    /* Effekte */
    --glow-gold: 0 0 15px rgba(255, 215, 0, 0.7);
    --glow-soft: 0 0 30px rgba(255, 215, 0, 0.4);
    --text-glow: 0 0 10px rgba(255, 215, 0, 0.9);
    --strong-glow: 0 0 25px rgba(255, 215, 0, 0.8);
    
    /* Abstände */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-gray);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: var(--spacing-sm) var(--spacing-lg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    text-shadow: var(--text-glow);
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-soft);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

/* Mobile burger menu */
.mobile-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-burger:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    box-shadow: var(--glow-soft);
}

.mobile-burger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: var(--text-glow);
}

.mobile-burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    box-shadow: var(--strong-glow);
}

.mobile-burger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    box-shadow: var(--strong-glow);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md);
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: var(--spacing-md) var(--spacing-sm);
    font-size: 1.1rem;
    text-align: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xs);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-menu a:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary-gold);
    text-shadow: var(--text-glow);
    transform: scale(1.02);
}

.mobile-nav-menu .nav-cta {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
    color: var(--dark-gray);
    box-shadow: var(--strong-glow);
    animation: goldPulse 2s ease-in-out infinite;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
}

nav a:hover {
    color: var(--primary-gold);
    text-shadow: var(--text-glow);
    background: rgba(255, 215, 0, 0.1);
}

.nav-cta {
    background: linear-gradient(to right, var(--primary-gold), var(--gold-dark));
    color: var(--dark-gray);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 700;
    box-shadow: var(--glow-gold);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    background: linear-gradient(to right, var(--gold-light), var(--primary-gold));
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-top: 80px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 30%),
        linear-gradient(to bottom, var(--dark-gray), var(--gray));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: var(--spacing-lg);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--glow-soft);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(to right, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title span {
    color: var(--primary-gold);
    text-shadow: var(--text-glow);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    min-width: auto;
    width: auto;
}

.btn:hover {
    background: var(--primary-gold);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn.secondary {
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--white);
    background: rgba(255, 215, 0, 0.05);
}

.btn.secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--glow-soft);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.pricing-card {
    background: linear-gradient(to bottom, rgba(36, 36, 36, 0.8), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--strong-glow), 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}

.pricing-card:hover::before {
    opacity: 1;
    animation: glow 2s infinite;
}

.pricing-card.popular {
    border: 2px solid var(--primary-gold);
    box-shadow: var(--strong-glow), 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-card.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: black;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

@media (max-width: 992px) {
    .mobile-burger {
        display: flex;
    }
    
    nav ul {
        display: none;
    }
}

@media (max-width: 576px) {
    header {
        padding: var(--spacing-sm);
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .mobile-nav-menu {
        top: 70px;
    }
    
    .mobile-nav-menu a {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
}

/* Footer Styles */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.35);
    background:
        radial-gradient(900px 260px at 50% 0%, rgba(255, 215, 0, 0.08), transparent 70%),
        linear-gradient(to bottom, #1a1a1a, #141414);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 180px at 50% 15%, rgba(255, 215, 0, 0.06), transparent 60%),
        radial-gradient(900px 200px at 50% 100%, rgba(255, 255, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--dark-gray);
    background: linear-gradient(to bottom, var(--primary-gold), var(--gold-dark));
    box-shadow: var(--glow-gold);
}

.footer-brand-text {
    font-weight: 800;
    font-size: 1.25rem;
    background: linear-gradient(to right, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-soft);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    margin: 0.8rem 0 1.2rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    padding: 0.25rem 0.4rem;
    border-radius: var(--radius-md);
    transition: 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary-gold);
    text-shadow: var(--text-glow);
    background: rgba(255, 215, 0, 0.10);
}

.footer-follow {
    color: var(--primary-gold);
    font-weight: 700;
    margin: 1rem 0 0.6rem;
    text-shadow: var(--text-glow);
}

.footer-socials {
    list-style: none;
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    margin: 0 0 1.4rem;
    padding: 0;
}

.footer-socials .soc {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), var(--glow-gold);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-socials .soc:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 215, 0, 0.35);
}

/* Brand backgrounds */
.soc.ig {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976 55%, #962fbf);
}

.soc.yt {
    background: #ff0000;
}

.soc.tt {
    background: linear-gradient(135deg, #111, #ff0050);
}

.soc.fb {
    background: #1877f2;
}

.soc.dn {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.footer-legal {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.footer-legal a:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.footer-legal .love {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
}

@media (max-width: 640px) {
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-legal {
        padding: 0 0.5rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .footer-socials {
        gap: 0.6rem;
    }
}

/* Additional Styles */
.section {
    padding: 4rem 0;
}

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

.input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    background: rgba(26, 26, 26, 0.8);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.input::placeholder {
    color: var(--text-muted);
}

.input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

select.input {
    cursor: pointer;
}

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

.muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-actions .btn:last-child {
    margin-right: 0;
}

/* Footer CTA */
.footer-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-cta h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-cta .btn {
    background: var(--primary-gold);
    color: var(--dark-gray);
    border-color: var(--primary-gold);
}

/* Legal Navigation */
.legal-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.legal-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.legal-nav a:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Tailwind-Style Utility Classes */

/* Layout */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Sizes */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Margins & Padding */
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Typography */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Gold Theme Colors */
.text-gold-100 {
    color: var(--gold-light);
}

.text-gold-200 {
    color: var(--primary-gold);
}

.text-gold-300 {
    color: var(--gold-dark);
}

.bg-gold-800 {
    background: var(--gray);
}

.bg-gold-900 {
    background: var(--dark-gray);
}

.bg-gold-900\/50 {
    background: rgba(26, 26, 26, 0.5);
}

/* Cards */
.card {
    background: linear-gradient(to bottom, rgba(36, 36, 36, 0.8), rgba(26, 26, 26, 0.9));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.card-gold {
    border-color: rgba(255, 215, 0, 0.3);
}

.card:hover,
.card-gold:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-soft), 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}

/* Icons */
.icon-gold {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    box-shadow: var(--glow-gold);
}

/* Badges */
.badge-gold {
    background: var(--primary-gold);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--glow-gold);
}

/* Button Variants */
.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-gray);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--dark-gray);
}

.btn-secondary {
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--white);
    background: rgba(255, 215, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
}

.btn-primary-gold {
    background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
    color: var(--dark-gray);
    border: none;
    font-weight: 700;
    box-shadow: var(--glow-gold);
}

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

/* Typography Classes */
.h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

/* Transitions */
.transition-opacity {
    transition: opacity 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Transforms */
.scale-105:hover {
    transform: scale(1.05);
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Group Hover */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Rounded */
.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Shadow */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Hero Image */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--glow-soft);
}

/* Animations */
.animate-gold-glow {
    animation: goldGlow 3s ease-in-out infinite alternate;
}

.animate-gold-pulse {
    animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldGlow {
    0% { box-shadow: var(--glow-soft); }
    100% { box-shadow: var(--strong-glow); }
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .icon-gold {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Additional Utility Classes */
.hidden {
    display: none;
}

.fixed {
    position: fixed;
}

.z-50 {
    z-index: 50;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-h-full {
    max-height: 100%;
}

.object-contain {
    object-fit: contain;
}

.bg-black {
    background-color: #000;
}

.bg-opacity-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.left-4 { left: 1rem; }
.bottom-4 { bottom: 1rem; }

.text-white {
    color: white;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.hover\:text-gold-300:hover {
    color: var(--gold-dark);
}

.lightbox-modal {
    backdrop-filter: blur(5px);
}

/* Data attributes for animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* Additional Missing Classes */
.h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Additional Color Classes */
.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-900 {
    background-color: #7f1d1d;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-green-900 {
    background-color: #14532d;
}

.text-red-200 {
    color: #fecaca;
}

.text-red-300 {
    color: #fca5a5;
}

.text-red-400 {
    color: #f87171;
}

.text-green-200 {
    color: #bbf7d0;
}

.text-green-300 {
    color: #86efac;
}

.text-green-400 {
    color: #4ade80;
}

.bg-primary-gold {
    background: var(--primary-gold);
}

.text-dark-gray {
    color: var(--dark-gray);
}

/* Layout Classes */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.italic {
    font-style: italic;
}

.max-w-3xl {
    max-width: 48rem;
}

/* Utility Classes */
.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

.justify-content {
    justify-content: center;
}

.border-2 {
    border-width: 2px;
}

.border-gold-200 {
    border-color: rgba(255, 215, 0, 0.6);
}

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