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

:root {
    --primary-gold: #ff1759;
    --dark-gold: #b01b45;
    --rich-black: #0A0A0A;
    --deep-black: #1A1A1A;
    --accent-gold: #e01851;
    --text-light: #E5E5E5;
    --text-gold: #ff1759;
    --shadow-gold: 0 0 20px rgba(255, 23, 89, 0.3);
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--rich-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 23, 89, 0.2);
}

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

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: var(--shadow-gold);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 23, 89, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, var(--deep-black) 0%, var(--rich-black) 100%);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-chips {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chip {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), var(--dark-gold));
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

.chip-1 { top: 20%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 80%; animation-delay: 1s; }
.chip-3 { top: 30%; left: 70%; animation-delay: 2s; }
.chip-4 { top: 80%; left: 20%; animation-delay: 3s; }
.chip-5 { top: 10%; left: 90%; animation-delay: 4s; }

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, var(--text-light), #ccc);
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    animation: cardFloat 8s ease-in-out infinite;
}

.card-1 { top: 40%; left: 15%; animation-delay: 0s; }
.card-2 { top: 70%; left: 85%; animation-delay: 2s; }
.card-3 { top: 15%; left: 60%; animation-delay: 4s; }

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

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-30px) rotateY(180deg); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 2;
}

.slot-machine-container {
    perspective: 1000px;
}

.slot-machine {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold), inset 0 0 20px rgba(255, 23, 89, 0.1);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.slot-machine:hover {
    transform: rotateY(5deg) rotateX(5deg);
    box-shadow: 0 0 40px rgba(255, 23, 89, 0.6);
}

.slot-body {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slot-screen {
    width: 240px;
    height: 200px;
    background: var(--rich-black);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.reel {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: spin 3s ease-in-out infinite;
}

.reel:nth-child(2) { animation-delay: 0.5s; }
.reel:nth-child(3) { animation-delay: 1s; }

.symbol {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-bottom: 1px solid rgba(255, 23, 89, 0.2);
}

@keyframes spin {
    0% { transform: translateY(0); }
    25% { transform: translateY(-50px); }
    50% { transform: translateY(-100px); }
    75% { transform: translateY(-150px); }
    100% { transform: translateY(0); }
}

.slot-handle {
    width: 20px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-gold), var(--dark-gold));
    border-radius: 10px;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.slot-handle:hover {
    transform: translateY(-50%) rotate(15deg);
}

.hero-text {
    text-align: center;
    max-width: 500px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.cta-button {
    position: relative;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border: none;
    border-radius: 50px;
    color: var(--rich-black);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 23, 89, 0.4);
}

.button-trail {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-trail {
    left: 100%;
}

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

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: var(--shadow-gold);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-black) 100%);
}

.history-carousel {
    margin-bottom: 4rem;
    position: relative;
}

.carousel-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--deep-black);
    border: 2px solid var(--primary-gold);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    padding: 2rem;
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: var(--rich-black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.team-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
}

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

.team-card {
    height: 400px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border: 2px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, var(--primary-gold), var(--dark-gold));
    color: var(--rich-black);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    margin-bottom: 1rem;
    border: 3px solid var(--accent-gold);
}

.card-front h4, .card-back h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-front h4 {
    color: var(--primary-gold);
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: var(--rich-black);
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.games-grid.hexagonal {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.game-card {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(255, 23, 89, 0.3);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.7;
}

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--rich-black) 100%);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 23, 89, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: var(--deep-black);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 23, 89, 0.1);
}

.faq-question h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 23, 89, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--rich-black);
    overflow: hidden;
}

.blog-carousel {
    position: relative;
    overflow: hidden;
}

.blog-track {
    display: flex;
    gap: 2rem;
    animation: autoScroll 20s linear infinite;
    width: max-content;
}

.blog-track:hover {
    animation-play-state: paused;
}

.blog-card {
    width: 350px;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    position: relative;
}

.blog-image::before {
    content: '📰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.7;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 23, 89, 0.5);
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* Footer */
.footer {
    background: var(--deep-black);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-gold);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 23, 89, 0.3);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--rich-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--primary-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .slot-machine {
        width: 250px;
        height: 300px;
    }
    
    .games-grid.hexagonal {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .game-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-track {
        animation: none;
        flex-direction: column;
        align-items: center;
    }
    
    .blog-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slot-machine {
        width: 200px;
        height: 250px;
    }
    
    .slot-screen {
        width: 160px;
        height: 120px;
    }
    
    .symbol {
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Page-specific styles */

/* Page Hero */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: var(--shadow-gold);
    animation: slideInUp 1s ease-out;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* About Page Styles */
.story-section {
    padding: 100px 0;
    background: var(--rich-black);
}

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

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.timeline-container {
    position: relative;
    padding: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: -3rem;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--rich-black);
    font-size: 0.8rem;
    box-shadow: var(--shadow-gold);
}

.timeline-content h4 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--rich-black) 100%);
}

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

.value-card {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: var(--rich-black);
}

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

.leader-card {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.leader-image {
    position: relative;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    overflow: hidden;
}

.leader-avatar {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--rich-black);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--text-light);
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--rich-black) 100%);
}

.awards-carousel {
    overflow: hidden;
}

.awards-track {
    display: flex;
    gap: 2rem;
    animation: awardScroll 15s linear infinite;
}

.award-item {
    min-width: 300px;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    text-align: center;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h4 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--text-light);
}

@keyframes awardScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
    background: var(--rich-black);
    text-align: center;
}

.cta-content h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Auth Section Styles */
.auth-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-black) 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    margin-top: 150px;
}

.auth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.auth-visual {
    position: relative;
    padding: 2rem;
}

.visual-content h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visual-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
}

.stat-number {
    display: block;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-cards-auth {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.auth-card {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 8px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: 10%; animation-delay: 0s; }
.card-2 { top: 60%; right: 20%; animation-delay: 2s; }
.card-3 { bottom: 20%; left: 30%; animation-delay: 4s; }

.floating-chips-auth {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.auth-chip {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    animation: floatChip 8s ease-in-out infinite;
}

.chip-1 { top: 15%; right: 15%; animation-delay: 0s; }
.chip-2 { top: 50%; left: 20%; animation-delay: 3s; }
.chip-3 { bottom: 25%; right: 30%; animation-delay: 6s; }

/* Auth Form */
.auth-form-container {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    padding: 3rem;
    box-shadow: var(--shadow-gold);
}

.auth-title {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    background: var(--rich-black);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-help {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    opacity: 0.7;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
    color: var(--rich-black);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    font-weight: bold;
}

.auth-button {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: var(--text-light);
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gold);
    opacity: 0.3;
}

.auth-divider span {
    background: var(--deep-black);
    padding: 0 1rem;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 12px 16px;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
}

.link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.forgot-password {
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--deep-black) 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    margin-top: 120px;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.newsletter-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.benefit-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.newsletter-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.envelope {
    position: relative;
    width: 100px;
    height: 70px;
    animation: bounce 2s ease-in-out infinite;
}

.envelope-body {
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 5px;
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--accent-gold);
    clip-path: polygon(0 0, 50% 70%, 100% 0);
    border-radius: 5px 5px 0 0;
}

.letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.newsletter-form-container {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    padding: 3rem;
    box-shadow: var(--shadow-gold);
}

.newsletter-title {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preferences-section {
    background: var(--rich-black);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    margin: 1rem 0;
}

.preferences-section h3 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.agreement-section {
    background: var(--rich-black);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
    margin: 1rem 0;
}

.newsletter-button {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.newsletter-footer {
    margin-top: 2rem;
    text-align: center;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.privacy-icon {
    color: var(--primary-gold);
}

.unsubscribe-note {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-header h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Blog Post Styles */
.blog-post-section {
    background: var(--rich-black);
    min-height: 100vh;
    padding: 2rem 0;
    margin-top: 150px;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blog-breadcrumb {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: var(--accent-gold);
}

.blog-title {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
}

.author-name {
    color: var(--primary-gold);
    font-weight: 600;
    display: block;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
}

.blog-image {
    position: relative;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
    color: var(--rich-black);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 1rem;
    font-size: 0.9rem;
}

.blog-content {
    padding: 2rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-quote {
    background: var(--rich-black);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    border-radius: 0 10px 10px 0;
}

.content-list {
    color: var(--text-light);
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.content-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-list.numbered {
    list-style: decimal;
}

.info-box {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--rich-black);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

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

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.social-share {
    padding: 2rem;
    border-top: 1px solid var(--primary-gold);
    text-align: center;
}

.social-share h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    background: var(--rich-black);
    border: 2px solid var(--primary-gold);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
}

/* Comments Section */
.comments-section {
    padding: 2rem;
    border-top: 1px solid var(--primary-gold);
}

.comments-title {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.comment-form-wrapper {
    background: var(--rich-black);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.comment-form-wrapper h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form textarea {
    background: var(--deep-black);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.comment-submit-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.comment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

.comment-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-action {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: var(--primary-gold);
}

.load-more-comments {
    background: var(--rich-black);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.load-more-comments:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(145deg, var(--deep-black), var(--rich-black));
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
}

.sidebar-widget h4 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--rich-black);
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.related-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.related-content h5 {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-date {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
}

.sidebar-cta {
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    color: var(--rich-black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: var(--rich-black);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-cloud .tag:hover {
    background: var(--primary-gold);
    color: var(--rich-black);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

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

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .auth-container,
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .comment-item {
        flex-direction: column;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-stats {
        grid-template-columns: 1fr;
    }
    
    .awards-track {
        flex-direction: column;
    }
    
    .award-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .auth-form-container,
    .newsletter-form-container {
        padding: 2rem 1rem;
    }
    
    .auth-title,
    .newsletter-title {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .comment-form-wrapper {
        padding: 1rem;
    }
}

/*Faq Page*/

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

.faq-item.active .faq-answer {
    padding-top: 0.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

/*Confirmation Message*/

