/* Golden Hand Theme Main Styles */

/* CSS Variables */
:root {
    --gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;/* Golden Hand Theme Main Styles */

/* CSS Variables */
:root {
    --gold-gradient: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFD700;
    --metallic-gold: #B8860B;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', Arial, sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 2.5rem;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.4) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background: radial-gradient(circle at 50% 50%, var(--accent-gold) 0%, transparent 70%);
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    padding-top: 2rem; /* Buffer above the content */
    padding-bottom: 2rem; /* Buffer below the content */
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 2s infinite;
    position: relative;
    display: inline-block;
}

/* Fix for hero image centering and sizing, with added top and bottom margin for buffer */
.hero h1 img {
    height: 5rem;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    animation: logoGlow 3s ease-in-out infinite;
    display: block;
    margin: 1.5rem auto; /* Added a buffer of 1.5rem top and bottom */
    max-width: 100%;
    height: auto;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.8)) brightness(1.1);
    }
}

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

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    word-wrap: break-word;
    white-space: normal;
}

.hero-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* This targets all paragraphs in the sections and centers them */
.about p,
.how-to-play p,
.strategy-mode p,
.kickstarter p,
.follow-us p,
.contact p {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #D4AF37, #FFD700, #D4AF37, #B8860B);
    background-size: 200% 100%;
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Game Icons */
.game-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.icon-card {
    background: #000;
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    width: 140px;
    height: 196px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.icon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.icon-card:hover {
    transform: translateY(-10px) rotate(5deg);
    border-color: var(--accent-gold-light);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.icon-card:hover::before {
    opacity: 0.2;
}

.card-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
}

/* About Section */
.about {
    background: #f8f8f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* About Section - Static Image */
.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto;
    background: var(--dark-bg);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.1;
    pointer-events: none;
}

.placeholder-text {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* How to Play Section */
.how-to-play {
    background: var(--dark-bg);
    color: var(--text-light);
}

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

.rule-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gold-gradient);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
}

.rule-card:hover::before {
    opacity: 0.1;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.rule-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.rule-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.rule-description {
    line-height: 1.6;
    color: #ccc;
}

/* Strategy Mode Section */
.strategy-mode {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.strategy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-highlight {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

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

/* Kickstarter Section */
.kickstarter {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
}

.kickstarter-box {
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.kickstarter-box::before {
    content: '🎯';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Follow Us Section */
.follow-us {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
}

.social-section {
    max-width: 800px;
    margin: 0 auto;
}

.social-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-gold-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-icon:hover::before {
    opacity: 0.2;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: var(--accent-gold-light);
}

/* Contact Section */
.contact {
    background: #f8f8f8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 3rem 0;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu .hamburger,
.mobile-menu .hamburger::before,
.mobile-menu .hamburger::after {
    background: var(--text-light);
    display: block;
    height: 3px;
    width: 25px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu .hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu .hamburger::before,
.mobile-menu .hamburger::after {
    content: '';
}

.mobile-menu .hamburger::before {
    top: -8px;
}

.mobile-menu .hamburger::after {
    bottom: -8px;
}

.mobile-menu.active .hamburger {
    background: transparent;
}

.mobile-menu.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    text-align: center;
}

.countdown-item .days,
.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.countdown-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ccc;
}

/* Fade-in animation utility class */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* New CSS rule for game title */
.game-title {
    font-weight: bold;
    font-style: italic;
    color: var(--accent-gold-light);
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 img {
        height: 3rem;
        width: auto;
    }

    .hero-tagline,
    .hero-description {
        word-wrap: break-word;
        white-space: normal;
        padding: 0 15px; /* Added padding to prevent text from touching the screen edges */
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .game-icons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .icon-card {
        width: 100px;
        height: 140px;
    }

    .card-label {
        font-size: 0.8rem;
        bottom: 5px;
    }

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

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 1rem;
    }

    .countdown-item .days,
    .countdown-item .hours,
    .countdown-item .minutes,
    .countdown-item .seconds {
        font-size: 1.5rem;
    }
}
    --text-dark: #333333;
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFD700;
    --metallic-gold: #B8860B;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', Arial, sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 2.5rem;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.4) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background: radial-gradient(circle at 50% 50%, var(--accent-gold) 0%, transparent 70%);
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    padding-top: 2rem; /* Buffer above the content */
    padding-bottom: 2rem; /* Buffer below the content */
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: pulse 2s infinite;
    position: relative;
    display: inline-block;
}

/* Fix for hero image centering and sizing, with added top and bottom margin for buffer */
.hero h1 img {
    height: 5rem;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    animation: logoGlow 3s ease-in-out infinite;
    display: block;
    margin: 1.5rem auto; /* Added a buffer of 1.5rem top and bottom */
    max-width: 100%;
    height: auto;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.8)) brightness(1.1);
    }
}

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

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    word-wrap: break-word;
    white-space: normal;
}

.hero-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* This targets all paragraphs in the sections and centers them */
p {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B, #D4AF37, #FFD700, #D4AF37, #B8860B);
    background-size: 200% 100%;
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Game Icons */
.game-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.icon-card {
    background: #000;
    border: 3px solid var(--accent-gold);
    border-radius: 15px;
    width: 140px;
    height: 196px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.icon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.icon-card:hover {
    transform: translateY(-10px) rotate(5deg);
    border-color: var(--accent-gold-light);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.icon-card:hover::before {
    opacity: 0.2;
}

.card-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
}

/* About Section */
.about {
    background: #f8f8f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* About Section - Static Image */
.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto;
    background: var(--dark-bg);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.1;
    pointer-events: none;
}

.placeholder-text {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* How to Play Section */
.how-to-play {
    background: var(--dark-bg);
    color: var(--text-light);
}

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

.rule-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gold-gradient);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
}

.rule-card:hover::before {
    opacity: 0.1;
}

.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.rule-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.rule-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.rule-description {
    line-height: 1.6;
    color: #ccc;
}

/* Strategy Mode Section */
.strategy-mode {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.strategy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.strategy-highlight {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

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

/* Kickstarter Section */
.kickstarter {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
}

.kickstarter-box {
    background: rgba(255, 215, 0, 0.1);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.kickstarter-box::before {
    content: '🎯';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Follow Us Section */
.follow-us {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
}

.social-section {
    max-width: 800px;
    margin: 0 auto;
}

.social-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-gold-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-icon:hover::before {
    opacity: 0.2;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: fill 0.3s ease;
}

.social-icon:hover svg {
    fill: var(--accent-gold-light);
}

/* Contact Section */
.contact {
    background: #f8f8f8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 3rem 0;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu .hamburger,
.mobile-menu .hamburger::before,
.mobile-menu .hamburger::after {
    background: var(--text-light);
    display: block;
    height: 3px;
    width: 25px;
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu .hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu .hamburger::before,
.mobile-menu .hamburger::after {
    content: '';
}

.mobile-menu .hamburger::before {
    top: -8px;
}

.mobile-menu .hamburger::after {
    bottom: -8px;
}

.mobile-menu.active .hamburger {
    background: transparent;
}

.mobile-menu.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    text-align: center;
}

.countdown-item .days,
.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.countdown-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ccc;
}

/* Fade-in animation utility class */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 img {
        height: 3rem;
        width: auto;
    }

    .hero-tagline,
    .hero-description {
        word-wrap: break-word;
        white-space: normal;
        padding: 0 15px; /* Added padding to prevent text from touching the screen edges */
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .game-icons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .icon-card {
        width: 100px;
        height: 140px;
    }

    .card-label {
        font-size: 0.8rem;
        bottom: 5px;
    }

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

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 1rem;
    }

    .countdown-item .days,
    .countdown-item .hours,
    .countdown-item .minutes,
    .countdown-item .seconds {
        font-size: 1.5rem;
    }
}

/* FAQ Section Styling */
.faq {
    background: #f8f8f8;
    padding: 5rem 0;
}

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

.faq .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
}

/* FAQ Accordion Styling */
.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--accent-gold);
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer.open {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.faq-answer strong {
    color: var(--accent-gold);
    font-style: italic;
}

/* Mobile styles for FAQ */
@media (max-width: 768px) {
    .faq .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding-right: 2.5rem;
    }
    
    .faq-question::after {
        right: 1rem;
        font-size: 1.2rem;
    }
}

/* Footer Link Styles */
.site-info a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.site-info a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
    text-decoration-color: var(--accent-gold-light);
}

/* Alternative with subtle glow effect on hover */
.site-info a:hover {
    color: var(--accent-gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}