/* FunSocialClub.org - Custom Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 100vh;
}

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

/* Navigation Styles */
.funsocialclub-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid #e74c3c;
}

.funsocialclub-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.funsocialclub-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.funsocialclub-navbar-logo {
    height: 45px;
    margin-right: 12px;
    border-radius: 8px;
}

.funsocialclub-navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.funsocialclub-navbar-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.funsocialclub-navbar-link:hover,
.funsocialclub-navbar-link.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
}

.funsocialclub-navbar-cta {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
}

.funsocialclub-navbar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border-color: #c0392b;
    color: white;
}

.funsocialclub-navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.funsocialclub-navbar-toggle:hover {
    background: rgba(231, 76, 60, 0.1);
}

.funsocialclub-navbar-toggle-bar {
    width: 28px;
    height: 4px;
    background: #e74c3c;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .funsocialclub-navbar-toggle {
        display: flex;
    }
    
    .funsocialclub-navbar-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(15px);
        border-top: 3px solid #e74c3c;
    }
    
    .funsocialclub-navbar-menu.active {
        left: 0;
    }
    
    .funsocialclub-navbar-link {
        padding: 1.2rem;
        font-size: 1.3rem;
        border-bottom: 1px solid #ecf0f1;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        border-radius: 10px;
    }
    
    .funsocialclub-navbar-cta {
        margin-top: 1.5rem;
        display: inline-block;
        font-size: 1.2rem;
    }
}

/* Hero Section */
.funsocialclub-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.funsocialclub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.funsocialclub-hero-content {
    position: relative;
    z-index: 2;
}

.funsocialclub-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.funsocialclub-hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funsocialclub-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.funsocialclub-hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.funsocialclub-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5);
    color: white;
}

/* Section Styles */
.funsocialclub-section {
    padding: 100px 0;
    background: white;
}

.funsocialclub-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.funsocialclub-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
}

.funsocialclub-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.funsocialclub-section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Features Grid */
.funsocialclub-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funsocialclub-feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    position: relative;
    overflow: hidden;
}

.funsocialclub-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.funsocialclub-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.funsocialclub-feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.funsocialclub-feature-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.funsocialclub-feature-desc {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Games Grid */
.funsocialclub-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funsocialclub-game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    position: relative;
}

.funsocialclub-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.funsocialclub-game-card-with-badge {
    position: relative;
}

.funsocialclub-game-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.funsocialclub-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.funsocialclub-game-card:hover .funsocialclub-game-image img {
    transform: scale(1.1);
}

.funsocialclub-game-content {
    padding: 2rem;
}

.funsocialclub-game-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.funsocialclub-game-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.funsocialclub-game-play {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.funsocialclub-game-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Stats Section */
.funsocialclub-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funsocialclub-stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.funsocialclub-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.funsocialclub-stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #e74c3c;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.funsocialclub-stat-label {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials */
.funsocialclub-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funsocialclub-testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #e74c3c;
    position: relative;
}

.funsocialclub-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e74c3c;
    opacity: 0.3;
    font-family: serif;
}

.funsocialclub-testimonial-content {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.funsocialclub-testimonial-author {
    display: flex;
    align-items: center;
}

.funsocialclub-author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.funsocialclub-author-name {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1rem;
}

.funsocialclub-author-location {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Footer */
.funsocialclub-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.funsocialclub-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

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

.funsocialclub-footer-section h3 {
    margin-bottom: 1.5rem;
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: bold;
}

.funsocialclub-footer-section p,
.funsocialclub-footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.1rem;
}

.funsocialclub-footer-section a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.funsocialclub-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .funsocialclub-hero-title {
        font-size: 2.8rem;
    }
    
    .funsocialclub-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .funsocialclub-section-title {
        font-size: 2.2rem;
    }
    
    .funsocialclub-features-grid,
    .funsocialclub-games-grid,
    .funsocialclub-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .funsocialclub-feature-card,
    .funsocialclub-game-card,
    .funsocialclub-testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.no-margin {
    margin-bottom: 0 !important;
}

/* Content Wrapper Styles */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-box-alt {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-box-sm {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Text Styles */
.text-muted-italic {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.1rem;
}

.content-h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.content-h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.content-p {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.content-p-mb {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.content-ul {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.content-ul-mb {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

/* Game Tags */
.game-tag {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 8px;
    display: inline-block;
}

.game-tag:last-child {
    margin-right: 0;
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.game-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #7f8c8d;
}

/* Hero Stats */
.hero-stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    display: block;
}

.hero-stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Community Stats */
.community-stat {
    color: #e74c3c;
    font-weight: bold;
}

.community-stat + .community-stat {
    margin-left: 25px;
}

/* Stat Icon */
.stat-icon {
    margin-top: 1.5rem;
    color: #e74c3c;
    font-size: 2.5rem;
}

/* Info Boxes */
.info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.info-box p {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}


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

.warning-box {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.warning-box p {
    color: #0c5460;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

.warning-box-center {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.warning-box-center strong {
    color: #0c5460;
    font-size: 1.2rem;
}

.warning-box-wide {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.warning-box-wide strong {
    color: #0c5460;
    font-size: 1.2rem;
}

/* Footer Styles */
.footer-disclaimer {
    background: #34495e;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.footer-disclaimer p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-link {
    color: #e74c3c;
}

.footer-link:hover {
    color: #c0392b;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-group {
    margin-bottom: 2rem;
}

.contact-form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
}

.contact-form-submit {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    display: none;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
}

.contact-info-title {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-text {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-info-small {
    color: #7f8c8d;
}

.contact-info-email {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-email:hover {
    text-decoration: underline;
}

/* Section Title Styles */
.section-h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.section-p {
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

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

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats-container {
        gap: 2rem;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .community-stat + .community-stat {
        margin-left: 0;
        display: block;
        margin-top: 10px;
    }
    
    .content-box,
    .content-box-alt,
    .content-box-sm,
    .contact-form,
    .contact-info-box {
        padding: 2rem;
    }
    
    .content-h2,
    .section-h2 {
        font-size: 1.8rem;
    }
}

/* Cookie Consent */
.funsocialclub-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: none;
    border-top: 3px solid #e74c3c;
}

.funsocialclub-cookie-consent.show {
    display: block;
}

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

.funsocialclub-cookie-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 1.1rem;
}

.funsocialclub-cookie-buttons {
    display: flex;
    gap: 1.5rem;
}

.funsocialclub-cookie-accept {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.funsocialclub-cookie-accept:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.funsocialclub-cookie-policy {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.funsocialclub-cookie-policy:hover {
    text-decoration: underline;
}

/* Contact Grid Styles */
.funsocialclub-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .funsocialclub-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .funsocialclub-contact-grid h2 {
        font-size: 1.5rem !important;
    }
    
    .funsocialclub-contact-grid input,
    .funsocialclub-contact-grid select,
    .funsocialclub-contact-grid textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .funsocialclub-contact-grid p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .funsocialclub-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .funsocialclub-cookie-text {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}
