/* MySocialFun.com - Elegant Social Gaming Platform */

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #3d3027;
    background: #f5f3f0;
    min-height: 100vh;
}

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

/* Navigation Styles */
.mysocialfun-navbar {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(108, 78, 49, 0.12);
    border-bottom: 2px solid #9b7653;
}

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

.mysocialfun-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6c4e31;
    font-weight: 600;
    font-size: 1.6rem;
    gap: 12px;
    font-family: Georgia, serif;
}

.mysocialfun-navbar-logo {
    height: 45px;
    width: auto;
}

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

.mysocialfun-navbar-link {
    text-decoration: none;
    color: #5a483d;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mysocialfun-navbar-link:hover,
.mysocialfun-navbar-link.active {
    background: #9b7653;
    color: white;
}

.mysocialfun-navbar-cta {
    background: #6c4e31;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 78, 49, 0.25);
}

.mysocialfun-navbar-cta:hover {
    background: #5a3f28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 78, 49, 0.35);
}

.mysocialfun-navbar-toggle {
    display: none;
    flex-direction: column;
    background: #6c4e31;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 6px;
}

.mysocialfun-navbar-toggle-bar {
    width: 26px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.mysocialfun-hero {
    background: linear-gradient(135deg, #d4b59e 0%, #c9a882 50%, #b89968 100%);
    padding: 9rem 0 6rem;
    text-align: center;
    color: #3d3027;
    margin-top: 75px;
}

.mysocialfun-hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.mysocialfun-hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    font-family: Georgia, serif;
    font-style: italic;
    color: #2d2419;
}

.mysocialfun-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #4a3a2e;
}

.mysocialfun-hero-cta {
    display: inline-block;
    background: #6c4e31;
    color: white;
    padding: 1.1rem 3.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(108, 78, 49, 0.3);
}

.mysocialfun-hero-cta:hover {
    background: #5a3f28;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 78, 49, 0.4);
}

/* Stats Section */
.mysocialfun-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mysocialfun-stat {
    text-align: center;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    min-width: 140px;
    backdrop-filter: blur(10px);
}

.mysocialfun-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2419;
    display: block;
    font-family: Georgia, serif;
}

.mysocialfun-stat-label {
    color: #3d3027;
    font-size: 1.05rem;
    margin-top: 0.6rem;
    font-weight: 500;
}

/* Section Styles */
.mysocialfun-section {
    padding: 5.5rem 0;
    background: #faf8f6;
}

.mysocialfun-section-alt {
    background: #f0ebe6;
}

.mysocialfun-section-title {
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #2d2419;
    font-family: Georgia, serif;
    font-style: italic;
}

.mysocialfun-section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: #6b5a4d;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Features Grid */
.mysocialfun-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.mysocialfun-feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(108, 78, 49, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mysocialfun-feature-card:hover {
    transform: translateY(-6px);
    border-color: #9b7653;
    box-shadow: 0 8px 30px rgba(108, 78, 49, 0.15);
}

.mysocialfun-feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #9b7653, #6c4e31);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: white;
    font-size: 2.2rem;
}

.mysocialfun-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #2d2419;
    font-family: Georgia, serif;
}

.mysocialfun-feature-desc {
    color: #6b5a4d;
    line-height: 1.9;
}

/* Games Grid */
.mysocialfun-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.mysocialfun-game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(108, 78, 49, 0.1);
    transition: all 0.3s ease;
}

.mysocialfun-game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(108, 78, 49, 0.18);
}

.mysocialfun-game-image {
    height: 220px;
    overflow: hidden;
    background: #f0ebe6;
}

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

.mysocialfun-game-card:hover .mysocialfun-game-image img {
    transform: scale(1.08);
}

.mysocialfun-game-content {
    padding: 2.2rem;
}

.mysocialfun-game-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    color: #2d2419;
    font-family: Georgia, serif;
}

.mysocialfun-game-desc {
    color: #6b5a4d;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.mysocialfun-game-play {
    background: #6c4e31;
    color: white;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
}

.mysocialfun-game-play:hover {
    background: #5a3f28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 78, 49, 0.3);
}

/* Footer */
.mysocialfun-footer {
    background: #3d3027;
    color: #e8dfd6;
    padding: 3.5rem 0 1.5rem;
    border-top: 4px solid #9b7653;
}

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

.mysocialfun-footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #f5f3f0;
    font-family: Georgia, serif;
}

.mysocialfun-footer-section p {
    margin-bottom: 0.9rem;
    color: #d4c4b5;
    line-height: 1.7;
}

.mysocialfun-footer-section a {
    color: #c9a882;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mysocialfun-footer-section a:hover {
    color: #d4b59e;
}

.mysocialfun-footer-bottom {
    text-align: center;
    padding-top: 1.8rem;
    border-top: 1px solid #5a483d;
    color: #a89582;
}

.mysocialfun-footer-bottom a {
    color: #c9a882;
    text-decoration: none;
}

/* Cookie Consent */
.mysocialfun-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3d3027;
    color: white;
    padding: 1.8rem;
    z-index: 1000;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #9b7653;
}

.mysocialfun-cookie-consent.show {
    transform: translateY(0);
}

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

.mysocialfun-cookie-text {
    flex: 1;
    line-height: 1.7;
    color: #e8dfd6;
}

.mysocialfun-cookie-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.mysocialfun-cookie-policy {
    color: #d4b59e;
    text-decoration: underline;
}

.mysocialfun-cookie-accept {
    background: #9b7653;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mysocialfun-cookie-accept:hover {
    background: #8a6647;
    transform: translateY(-2px);
}

/* Contact Page */
.mysocialfun-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.mysocialfun-contact-form-container,
.mysocialfun-contact-info-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(108, 78, 49, 0.1);
}

.mysocialfun-contact-title {
    color: #2d2419;
    margin-bottom: 0.9rem;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: Georgia, serif;
}

.mysocialfun-contact-subtitle {
    color: #6b5a4d;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.mysocialfun-form-group {
    margin-bottom: 1.8rem;
}

.mysocialfun-form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2d2419;
    font-weight: 600;
}

.mysocialfun-form-input,
.mysocialfun-form-select,
.mysocialfun-form-textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e8dfd6;
    border-radius: 8px;
    font-size: 1rem;
    background: #faf8f6;
    color: #3d3027;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mysocialfun-form-input:focus,
.mysocialfun-form-select:focus,
.mysocialfun-form-textarea:focus {
    border-color: #9b7653;
    outline: none;
    background: white;
}

.mysocialfun-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.mysocialfun-form-submit {
    background: #6c4e31;
    color: white;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mysocialfun-form-submit:hover {
    background: #5a3f28;
    transform: translateY(-2px);
}

/* Legal Pages */
.mysocialfun-legal-content {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(108, 78, 49, 0.1);
}

.mysocialfun-legal-title {
    color: #2d2419;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: Georgia, serif;
}

.mysocialfun-legal-subtitle {
    color: #6c4e31;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Georgia, serif;
}

.mysocialfun-legal-text {
    color: #4a3a2e;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.mysocialfun-legal-list {
    color: #4a3a2e;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    padding-left: 2.5rem;
}

.mysocialfun-legal-list li {
    margin-bottom: 0.6rem;
}

.mysocialfun-legal-updated {
    color: #9b7653;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 600;
}

.mysocialfun-legal-contact {
    background: #f5f3f0;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #9b7653;
    margin-top: 2.5rem;
}

.mysocialfun-legal-contact p {
    margin-bottom: 0.9rem;
    color: #4a3a2e;
    line-height: 1.7;
}

.mysocialfun-legal-contact strong {
    color: #6c4e31;
}

/* Contact Detail Cards */
.mysocialfun-contact-details-container {
    margin-top: 2.2rem;
}

.mysocialfun-contact-detail-card {
    margin-bottom: 1.8rem;
    padding: 1.8rem;
    background: #f5f3f0;
    border-radius: 12px;
    border: 2px solid #9b7653;
}

.mysocialfun-contact-detail-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.9rem;
}

.mysocialfun-contact-detail-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #9b7653, #6c4e31);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.mysocialfun-contact-detail-title {
    color: #2d2419;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-family: Georgia, serif;
}

.mysocialfun-contact-detail-text {
    color: #4a3a2e;
    font-size: 1.1rem;
    margin: 0.6rem 0;
    font-weight: 500;
}

.mysocialfun-contact-detail-desc {
    color: #6b5a4d;
    font-size: 0.95rem;
}

/* Disclaimers */
.mysocialfun-disclaimer-box {
    background: #f5f3f0;
    border-radius: 12px;
    padding: 3rem;
    border: 3px solid #9b7653;
    text-align: center;
    box-shadow: 0 4px 20px rgba(108, 78, 49, 0.1);
}

.mysocialfun-disclaimer-title {
    color: #6c4e31;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: Georgia, serif;
}

.mysocialfun-disclaimer-text {
    color: #3d3027;
    line-height: 1.9;
}

.mysocialfun-footer-disclaimer {
    background: rgba(90, 72, 61, 0.4);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 2px solid #9b7653;
}

.mysocialfun-footer-disclaimer-text {
    color: #e8dfd6;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

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

.mysocialfun-footer-disclaimer-link {
    color: #d4b59e;
    text-decoration: none;
}

.mysocialfun-footer-disclaimer-link:hover {
    text-decoration: underline;
}

/* Button States */
.mysocialfun-btn-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hamburger Animation */
.mysocialfun-navbar-toggle-bar.active-line-1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.mysocialfun-navbar-toggle-bar.active-line-2 {
    opacity: 0;
}

.mysocialfun-navbar-toggle-bar.active-line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mysocialfun-navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #6c4e31;
        flex-direction: column;
        padding: 2.5rem;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        margin-top: 77px;
        max-height: calc(100vh - 77px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }

    .mysocialfun-navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mysocialfun-navbar-link {
        color: white;
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .mysocialfun-navbar-link:hover,
    .mysocialfun-navbar-link.active {
        background: #5a3f28;
    }

    .mysocialfun-navbar-toggle {
        display: flex;
        z-index: 1001;
    }

    .mysocialfun-navbar-menu li:last-child {
        order: 1;
        margin-top: 1.8rem;
    }

    .mysocialfun-navbar-cta {
        background: white;
        color: #6c4e31;
    }

    .mysocialfun-hero-title {
        font-size: 2.2rem;
    }

    .mysocialfun-hero-subtitle {
        font-size: 1.05rem;
    }

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

    .mysocialfun-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .mysocialfun-contact-grid {
        grid-template-columns: 1fr;
    }

    .mysocialfun-legal-content {
        padding: 2rem;
    }

    .mysocialfun-features-grid,
    .mysocialfun-games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mysocialfun-hero-title {
        font-size: 1.9rem;
    }

    .mysocialfun-hero-subtitle {
        font-size: 0.95rem;
    }

    .mysocialfun-section-title {
        font-size: 1.7rem;
    }

    .mysocialfun-navbar-brand {
        font-size: 1.3rem;
    }

    .mysocialfun-stat-number {
        font-size: 2.5rem;
    }
}

