@import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /*  Primary Theme Colors */
        --color-primary: #00b33c;
            --color-primary-dark: #006622;
            --color-primary-light: #33cc66;
            --color-secondary: #ffd700;
            --color-secondary-dark: #ccac00;
            --color-accent: #ffcc00;
            --color-highlight: #ff4444;
            --color-white: #ffffff;
            --color-black: #000000;
            --color-gold: #ffd700;
            --color-gold-dark: #b8860b;
            --gradient-primary: linear-gradient(135deg, #00b33c, #33cc66);
            --gradient-gold: linear-gradient(90deg, #ffd700, #ffcc00);
            --gradient-dark: linear-gradient(180deg, #004d1a, #001a00);
            --gradient-hero: linear-gradient(135deg, #0c4a1a 0%, #006622 50%, #00b33c 100%);
            --gradient-card: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            --shadow-glow: 0 0 20px rgba(0, 179, 60, 0.3);
            --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "Noto Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  background: var(--color-primary-dark);
}

a {
  text-decoration: none;
}
h1,h2 {
     font-family: "Caprasimo", serif;
}

/* Utility Classes */
.w-full { width: 100%; }
.h-full { height: 100%; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.p-6 { padding: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-16 { margin-top: 4rem; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.text-center { text-align: center; }

.bg-black { background-color: var(--color-black); }
.bg-gray-900 { background-color: var(--color-primary-dark); }
.bg-gray-50 { background-color: var(--color-white); }

.text-white { color: var(--color-white); }
.text-gray-300 { color: var(--color-secondary-dark); }
.text-yellow-300 { color: var(--color-secondary); }

.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }
.text-lg { font-size: 1.125rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }

.border-2 { border-width: 2px; }
.border-white { border-color: var(--color-white); }
.border-white\/50 { border-color: rgba(255, 255, 255, 0.5); }

.bg-transparent { background-color: transparent; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:text-gray-300:hover { color: var(--color-secondary-dark); }
.hover\:text-purple-300:hover { color: var(--color-secondary); }
.hover\:bg-white:hover { background-color: var(--color-white); }
.hover\:bg-white\/20:hover { background-color: var(--color-white); opacity: 0.2; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.whitespace-nowrap { white-space: nowrap; }
.overflow-hidden { overflow: hidden; }
.min-h-screen { min-height: 100vh; }

.container { 
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
}

.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-6 { width: 1.5rem; }
.h-6 { width: 1.5rem; }
.h-12 { width: 3rem; }
.w-12 { width: 3rem; }

.cursor-pointer { cursor: pointer; }

/* Grid system */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:justify-center { justify-content: center; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.hero-section {
  background: var(--gradient-primary);
 min-height: 100vh;
  background-image: url('../images/bg-slot.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-black), transparent);
  opacity: 0.5;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: 0 0 30px rgba(var(--color-primary), 0.5);
  background: var(--gradient-primary);
}

.glow-effect:hover {
  box-shadow: 0 0 50px rgba(var(--color-primary), 0.8);
  transform: translateY(-2px) scale(1.05);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent), 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--color-accent), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-accent), 0);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  background-color: var(--color-white);
  opacity: 0.15;
}

/* Navigation style */
 /* Header & Navigation */
        .header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
           
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--color-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--color-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
          .nav-cta{
                display:block;
            }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--color-black);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--color-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
       
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            color: var(--color-gold);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--color-white), var(--color-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

      
        .btn-hero {
            background: var(--gradient-gold);
            color: var(--color-black);
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0 10px;
            border: none;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-gold);
            padding: 16px 38px;
        }

        .btn-outline:hover {
            background: var(--color-gold);
            color: var(--color-black);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--gradient-dark);
            position: relative;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--color-white), var(--color-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 0 5px;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--gradient-card);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--color-black);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-gold);
        }

        /* Games Section */
        .games-section {
            padding: 100px 0;
            background: var(--gradient-primary);
        }

        .games-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .game-card {
            background: var(--gradient-card);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: var(--shadow-heavy);
        }

        .game-image {
            width: 100%;
            /* height: 300px; */
            object-fit: cover;
        }

        .game-content {
            padding: 1rem;
            text-align: center;
        }

        .games-section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--color-white);
        }

        .game-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: var(--color-gold);
            justify-content: center;
        }

        .btn-game {
            width: 100%;
            background: var(--gradient-gold);
            color: var(--color-black);
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-game:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Recently Played */
        .recently-played {
            padding: 100px 0;
            background: var(--gradient-dark);
        }

        .recent-games {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .recent-card {
            background: var(--gradient-card);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
        }

        .recent-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .player-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .player-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--color-black);
        }

        /* Footer */
        .footer {
            background: var(--color-black);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        /* .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo img {
            height: 50px;
        } */

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .footer-links h3 {
            color: var(--color-gold);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--color-gold);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom a{
            color: var(--color-accent);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 2rem;
                text-align: center;
                border-top: 1px solid rgba(255, 215, 0, 0.2);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .btn-hero {
                padding: 15px 30px;
                font-size: 1rem;
                margin: 5px;
            }

            .section-title {
                font-size: 2.5rem;
            }
            .overlay{
                   background: linear-gradient(to right, #000000eb, #000000c4);
                    opacity: 0.9;
            }
            .nav-cta{
                display: none;
            }
            .hero-section {
              text-align: center;
            }
            .hero-btn{
              justify-content: center;
            }
            
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .recent-games {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-hero {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }

        /* Additional Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Particle Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: var(--color-gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s infinite ease-in-out;
        }
/* Game Container Styles */
.game-container {
  padding: 100px 0;
  background: var(--color-primary-dark);
  text-align: center;
}
.game-iframe {
  width: 100%;
  height: 540px; /* 16:9 aspect ratio */
  border: none;
}


.game-container .game-title {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.iframe-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 1000px;
  height: 540px; 
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .game-title {
    font-size: 2rem !important;
  }
  
  .game-container {
    padding: 50px 15px;
  }

  .iframe-container {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
     height: 100%;
  }
}

/* policy page */
.policy-content {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
 max-width: 1000px;
  border-radius: 8px;
  color: #f4f4f4;
}

.policy-content h3 {
  color: #e6dede;
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.policy-content ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

/* Contact us page */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #f3f4f6;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  border-radius: 5px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gradient-gold);
  color: var(--color-white);
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--gradient-primary);
}

.success-message {
  display: none;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }
}