/* SocialGameLoop.org - Unique Circular Loop Design */
/* Color Palette: Deep Purple (#6B46C1), Magenta (#C026D3), Gold (#F59E0B), Dark (#1F2937) */

:root {
    --socialgameloop-primary: #6B46C1;
    --socialgameloop-secondary: #C026D3;
    --socialgameloop-accent: #F59E0B;
    --socialgameloop-dark: #1F2937;
    --socialgameloop-darker: #111827;
    --socialgameloop-light: #F3F4F6;
    --socialgameloop-white: #FFFFFF;
    --socialgameloop-text: #374151;
    --socialgameloop-border: #E5E7EB;
    --socialgameloop-radius: 20px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--socialgameloop-text);
    background-color: var(--socialgameloop-white);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Compliance Banner */
.socialgameloop-compliance-banner {
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.socialgameloop-compliance-banner p {
    margin: 0;
}

/* Navigation */
.socialgameloop-navbar {
    background: var(--socialgameloop-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--socialgameloop-border);
}

.socialgameloop-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.socialgameloop-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--socialgameloop-dark);
    font-weight: 700;
    font-size: 24px;
    gap: 12px;
}

.socialgameloop-navbar-logo {
    height: 45px;
    width: auto;
    border-radius: 50%;
}

.socialgameloop-navbar-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.socialgameloop-navbar-link {
    text-decoration: none;
    color: var(--socialgameloop-text);
    padding: 10px 18px;
    border-radius: var(--socialgameloop-radius);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.socialgameloop-navbar-link:hover,
.socialgameloop-navbar-link.socialgameloop-active {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(192, 38, 211, 0.1));
    color: var(--socialgameloop-primary);
    transform: translateY(-2px);
}

.socialgameloop-navbar-cta {
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    padding: 12px 24px;
    border-radius: var(--socialgameloop-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    display: inline-block;
}

.socialgameloop-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
    color: var(--socialgameloop-white);
}

/* Mobile Toggle */
.socialgameloop-navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.socialgameloop-navbar-toggle-bar {
    width: 28px;
    height: 3px;
    background: var(--socialgameloop-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.socialgameloop-hero {
    background: linear-gradient(135deg, var(--socialgameloop-primary) 0%, var(--socialgameloop-secondary) 100%);
    color: var(--socialgameloop-white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.socialgameloop-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: socialgameloop-float 6s ease-in-out infinite;
}

.socialgameloop-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    animation: socialgameloop-float 8s ease-in-out infinite reverse;
}

@keyframes socialgameloop-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

.socialgameloop-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.socialgameloop-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.socialgameloop-hero-badge i {
    margin-right: 8px;
}

.socialgameloop-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.socialgameloop-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.socialgameloop-hero-cta {
    display: inline-block;
    background: var(--socialgameloop-accent);
    color: var(--socialgameloop-dark);
    padding: 16px 40px;
    border-radius: var(--socialgameloop-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.socialgameloop-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
    color: var(--socialgameloop-dark);
}

/* Hero Alt (for inner pages) */
.socialgameloop-hero-alt {
    background: linear-gradient(135deg, var(--socialgameloop-primary) 0%, var(--socialgameloop-secondary) 100%);
    color: var(--socialgameloop-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.socialgameloop-hero-alt::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: 10%;
    animation: socialgameloop-pulse 4s ease-in-out infinite;
}

@keyframes socialgameloop-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.socialgameloop-hero-alt-content {
    position: relative;
    z-index: 1;
}

.socialgameloop-hero-alt-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.socialgameloop-hero-alt-icon i {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.socialgameloop-hero-alt h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.socialgameloop-hero-alt-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.socialgameloop-legal-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

/* Sections */
.socialgameloop-section {
    padding: 80px 0;
}

.socialgameloop-section-sm {
    padding: 60px 0;
}

.socialgameloop-bg-white {
    background: var(--socialgameloop-white);
}

.socialgameloop-bg-light {
    background: var(--socialgameloop-light);
}

/* Typography */
h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--socialgameloop-dark);
    line-height: 1.2;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--socialgameloop-dark);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-text-center {
    text-align: center;
}

/* Feature Cards */
.socialgameloop-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.socialgameloop-feature-card {
    background: var(--socialgameloop-white);
    padding: 40px 30px;
    border-radius: var(--socialgameloop-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--socialgameloop-border);
    position: relative;
    overflow: hidden;
}

.socialgameloop-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.socialgameloop-feature-card:hover::before {
    transform: scaleX(1);
}

.socialgameloop-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(107, 70, 193, 0.15);
    border-color: var(--socialgameloop-primary);
}

.socialgameloop-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(192, 38, 211, 0.1));
    border-radius: 50%;
    color: var(--socialgameloop-primary);
    transition: all 0.3s ease;
}

.socialgameloop-feature-card:hover .socialgameloop-feature-icon {
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    transform: rotate(360deg) scale(1.1);
}

.socialgameloop-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-feature-desc {
    color: var(--socialgameloop-text);
    line-height: 1.7;
}

/* Game Cards */
.socialgameloop-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.socialgameloop-game-card {
    background: var(--socialgameloop-white);
    border-radius: var(--socialgameloop-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--socialgameloop-border);
    position: relative;
}

.socialgameloop-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(107, 70, 193, 0.2);
    border-color: var(--socialgameloop-secondary);
}

.socialgameloop-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--socialgameloop-accent), #FBBF24);
    color: var(--socialgameloop-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.socialgameloop-game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--socialgameloop-light), #E5E7EB);
    position: relative;
}

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

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

.socialgameloop-game-content {
    padding: 25px;
}

.socialgameloop-game-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-game-desc {
    color: var(--socialgameloop-text);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
}

.socialgameloop-game-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--socialgameloop-text);
}

.socialgameloop-game-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.socialgameloop-game-stats i {
    color: var(--socialgameloop-accent);
}

.socialgameloop-game-play {
    width: 100%;
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--socialgameloop-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.socialgameloop-game-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

/* Stats Grid */
.socialgameloop-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.socialgameloop-stat-card {
    background: var(--socialgameloop-white);
    padding: 40px 30px;
    border-radius: var(--socialgameloop-radius);
    text-align: center;
    border: 2px solid var(--socialgameloop-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.socialgameloop-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(192, 38, 211, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.socialgameloop-stat-card:hover::before {
    opacity: 1;
}

.socialgameloop-stat-card:hover {
    transform: scale(1.05);
    border-color: var(--socialgameloop-primary);
}

.socialgameloop-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.socialgameloop-stat-label {
    display: block;
    font-size: 16px;
    color: var(--socialgameloop-text);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.socialgameloop-stat-icon {
    font-size: 32px;
    margin-top: 15px;
    color: var(--socialgameloop-accent);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Overview Cards */
.socialgameloop-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.socialgameloop-overview-card {
    background: var(--socialgameloop-white);
    padding: 35px 28px;
    border-radius: var(--socialgameloop-radius);
    border: 2px solid var(--socialgameloop-border);
    transition: all 0.3s ease;
}

.socialgameloop-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.12);
    border-color: var(--socialgameloop-primary);
}

.socialgameloop-overview-icon {
    font-size: 42px;
    color: var(--socialgameloop-primary);
    margin-bottom: 18px;
}

.socialgameloop-overview-card h3 {
    margin-bottom: 12px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-overview-card p,
.socialgameloop-overview-card ul {
    color: var(--socialgameloop-text);
    line-height: 1.7;
}

/* Buttons */
.socialgameloop-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    padding: 14px 32px;
    border-radius: var(--socialgameloop-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.socialgameloop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
    color: var(--socialgameloop-white);
}

.socialgameloop-btn-secondary {
    background: var(--socialgameloop-white);
    color: var(--socialgameloop-primary);
    border: 2px solid var(--socialgameloop-primary);
    box-shadow: none;
}

.socialgameloop-btn-secondary:hover {
    background: var(--socialgameloop-primary);
    color: var(--socialgameloop-white);
}

/* Alerts */
.socialgameloop-alert {
    padding: 20px 25px;
    border-radius: var(--socialgameloop-radius);
    margin-bottom: 20px;
    border-left: 4px solid;
}

.socialgameloop-alert-info {
    background: rgba(107, 70, 193, 0.08);
    border-left-color: var(--socialgameloop-primary);
    color: var(--socialgameloop-dark);
}

.socialgameloop-alert-success {
    background: rgba(16, 185, 129, 0.08);
    border-left-color: #10B981;
    color: var(--socialgameloop-dark);
}

.socialgameloop-alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border-left-color: #EF4444;
    color: var(--socialgameloop-dark);
}

/* Content Areas */
.socialgameloop-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.socialgameloop-content-medium {
    max-width: 900px;
    margin: 0 auto;
}

.socialgameloop-flex-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Contact Section */
.socialgameloop-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.socialgameloop-contact-info-card,
.socialgameloop-contact-form-card {
    background: var(--socialgameloop-white);
    padding: 40px;
    border-radius: var(--socialgameloop-radius);
    border: 2px solid var(--socialgameloop-border);
}

.socialgameloop-contact-info-card h3,
.socialgameloop-contact-form-card h3 {
    margin-bottom: 25px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-contact-info-card h3 i,
.socialgameloop-contact-form-card h3 i {
    color: var(--socialgameloop-primary);
    margin-right: 10px;
}

.socialgameloop-contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.socialgameloop-contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.socialgameloop-contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(192, 38, 211, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socialgameloop-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.socialgameloop-contact-detail-content h4 {
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-contact-detail-content p {
    color: var(--socialgameloop-text);
    margin: 0;
}

.socialgameloop-contact-detail-content a {
    color: var(--socialgameloop-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.socialgameloop-contact-detail-content a:hover {
    color: var(--socialgameloop-secondary);
}

.socialgameloop-contact-form-desc {
    color: var(--socialgameloop-text);
    margin-bottom: 25px;
}

/* Forms */
.socialgameloop-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.socialgameloop-form-group {
    margin-bottom: 20px;
}

.socialgameloop-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--socialgameloop-dark);
}

.socialgameloop-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--socialgameloop-border);
    border-radius: var(--socialgameloop-radius);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.socialgameloop-form-control:focus {
    outline: none;
    border-color: var(--socialgameloop-primary);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

textarea.socialgameloop-form-control {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.socialgameloop-footer {
    background: var(--socialgameloop-darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.socialgameloop-footer-section h3 {
    color: var(--socialgameloop-white);
    margin-bottom: 20px;
    font-size: 20px;
}

.socialgameloop-footer-section p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.socialgameloop-footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.socialgameloop-footer-section a:hover {
    color: var(--socialgameloop-accent);
}

.socialgameloop-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.socialgameloop-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.socialgameloop-disclaimer a {
    color: var(--socialgameloop-accent);
    text-decoration: none;
}

.socialgameloop-disclaimer a:hover {
    text-decoration: underline;
}

.socialgameloop-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.socialgameloop-footer-bottom a {
    color: var(--socialgameloop-accent);
    text-decoration: none;
    margin-right: 10px;
}

.socialgameloop-footer-bottom a:hover {
    text-decoration: underline;
}

/* Cookie Popup */
.socialgameloop-cookie-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
}

.socialgameloop-cookie-content {
    background: var(--socialgameloop-white);
    padding: 25px 30px;
    border-radius: var(--socialgameloop-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--socialgameloop-primary);
}

.socialgameloop-cookie-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-cookie-text {
    color: var(--socialgameloop-text);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
}

.socialgameloop-cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.socialgameloop-cookie-accept {
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
    padding: 12px 28px;
    border: none;
    border-radius: var(--socialgameloop-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.socialgameloop-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

.socialgameloop-cookie-policy {
    color: var(--socialgameloop-primary);
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid var(--socialgameloop-primary);
    border-radius: var(--socialgameloop-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.socialgameloop-cookie-policy:hover {
    background: var(--socialgameloop-primary);
    color: var(--socialgameloop-white);
}

/* Game Modal */
.socialgameloop-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.socialgameloop-modal.socialgameloop-active {
    display: flex;
}

.socialgameloop-modal-content {
    background: var(--socialgameloop-white);
    border-radius: var(--socialgameloop-radius);
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.socialgameloop-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--socialgameloop-primary), var(--socialgameloop-secondary));
    color: var(--socialgameloop-white);
}

.socialgameloop-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.socialgameloop-modal-close {
    background: transparent;
    border: none;
    color: var(--socialgameloop-white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socialgameloop-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.socialgameloop-modal-body {
    padding: 0;
    background: var(--socialgameloop-dark);
}

.socialgameloop-modal-iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

/* Legal Pages */
.socialgameloop-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.socialgameloop-legal-section {
    margin-bottom: 40px;
}

.socialgameloop-legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--socialgameloop-dark);
}

.socialgameloop-legal-section h2 i {
    color: var(--socialgameloop-primary);
    margin-right: 10px;
}

.socialgameloop-legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.socialgameloop-legal-section h3 i {
    color: var(--socialgameloop-primary);
    margin-right: 8px;
}

.socialgameloop-legal-section h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.socialgameloop-legal-section h4 i {
    color: var(--socialgameloop-accent);
    margin-right: 8px;
}

.socialgameloop-legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--socialgameloop-text);
}

.socialgameloop-legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.socialgameloop-legal-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.7;
}

.socialgameloop-legal-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--socialgameloop-primary);
    font-size: 12px;
}

.socialgameloop-legal-list-plain {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.socialgameloop-legal-list-plain li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Utility Classes */
.socialgameloop-mb-3 {
    margin-bottom: 1rem;
}

.socialgameloop-mb-4 {
    margin-bottom: 1.5rem;
}

.socialgameloop-mb-5 {
    margin-bottom: 2.5rem;
}

.socialgameloop-mt-3 {
    margin-top: 1rem;
}

.socialgameloop-mt-5 {
    margin-top: 2.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .socialgameloop-hero-title {
        font-size: 44px;
    }
    
    .socialgameloop-hero-subtitle {
        font-size: 18px;
    }
    
    h2 {
        font-size: 34px;
    }
    
    .socialgameloop-contact-content {
        grid-template-columns: 1fr;
    }
    
    .socialgameloop-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .socialgameloop-navbar-toggle {
        display: flex;
    }
    
    .socialgameloop-navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--socialgameloop-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        border-top: 2px solid var(--socialgameloop-border);
    }
    
    .socialgameloop-navbar-menu.socialgameloop-active {
        max-height: 500px;
        opacity: 1;
    }
    
    .socialgameloop-navbar-menu li {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .socialgameloop-navbar-link,
    .socialgameloop-navbar-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .socialgameloop-hero {
        padding: 60px 0 50px;
    }
    
    .socialgameloop-hero-title {
        font-size: 36px;
    }
    
    .socialgameloop-hero-subtitle {
        font-size: 16px;
    }
    
    .socialgameloop-hero-alt h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .socialgameloop-section {
        padding: 50px 0;
    }
    
    .socialgameloop-features-grid,
    .socialgameloop-games-grid {
        grid-template-columns: 1fr;
    }
    
    .socialgameloop-form-row {
        grid-template-columns: 1fr;
    }
    
    .socialgameloop-flex-center {
        flex-direction: column;
    }
    
    .socialgameloop-btn {
        width: 100%;
        text-align: center;
    }
    
    .socialgameloop-contact-info-card,
    .socialgameloop-contact-form-card {
        padding: 25px;
    }
    
    .socialgameloop-modal-iframe {
        height: 50vh;
    }
    
    .socialgameloop-cookie-buttons {
        flex-direction: column;
    }
    
    .socialgameloop-cookie-accept,
    .socialgameloop-cookie-policy {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .socialgameloop-hero-title {
        font-size: 28px;
    }
    
    .socialgameloop-hero-alt h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .socialgameloop-navbar-brand {
        font-size: 20px;
    }
    
    .socialgameloop-navbar-logo {
        height: 35px;
    }
}

