/* ===================================
   OutbackSpawn.online - Main Styles
   Based on Thread Theme
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #a0a0a0;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d4ff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/backgrounds/hero-bg.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #c0c0c0;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #0f0f0f;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 64px;
    height: 64px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: #a0a0a0;
}

/* Game Preview Section */
.game-preview {
    padding: 6rem 0;
    background: #0a0a0a;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.game-preview-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.game-preview-card:hover .game-preview-image img {
    transform: scale(1.05);
}

.game-preview-info {
    padding: 2rem;
}

.game-preview-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.game-preview-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.game-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #a0a0a0;
}

.legal-notices {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-notices p {
    color: #808080;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        top: 70px;
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-notices {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mobile-menu {
        top: 60px;
        padding: 1rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   Gambling Addiction Disclaimer
   =================================== */

.gambling-disclaimer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #ff4444;
    border-bottom: 2px solid #ff4444;
    padding: 2rem 0;
    margin: 2rem 0 0 0;
}

.disclaimer-content {
    display: grid;
    gap: 2rem;
}

.disclaimer-warning {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.disclaimer-title {
    color: #ff4444;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.help-resources {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.help-title {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.help-contacts {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.help-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-contact strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.help-contact a {
    color: #00d4ff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* State-specific Gambling Help Resources */
.state-help-resources {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.state-help-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.state-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.state-help-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
}

.state-help-item strong {
    color: #00d4ff;
    font-size: 0.8rem;
}

.state-help-item a {
    color: #ffffff;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.state-help-item a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.disclaimer-notice {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-notice p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Disclaimer */
@media (max-width: 768px) {
    .gambling-disclaimer {
        padding: 1.5rem 0;
        margin: 1.5rem 0 0 0;
    }
    
    .disclaimer-content {
        gap: 1.5rem;
    }
    
    .help-contacts {
        gap: 0.5rem;
    }
    
    .help-contact {
        padding: 0.5rem;
    }
    
    .state-help-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .state-help-item {
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .gambling-disclaimer {
        padding: 1rem 0;
        margin: 1rem 0 0 0;
    }
    
    .disclaimer-title {
        font-size: 1.1rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
    }
    
    .help-title {
        font-size: 1rem;
    }
    
    .help-contact strong,
    .help-contact a {
        font-size: 0.8rem;
    }
    
    .disclaimer-notice p {
        font-size: 0.8rem;
    }
    
    .state-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .state-help-item {
        padding: 0.3rem;
    }
    
    .state-help-title {
        font-size: 0.9rem;
    }
    
    .state-help-item strong {
        font-size: 0.7rem;
    }
    
    .state-help-item a {
        font-size: 0.65rem;
    }
}

/* ===================================
   Cookie Banner Styles
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 3px solid #00d4ff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-banner-text h3 {
    color: #00d4ff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cookie-banner-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-policy-link {
    color: #00d4ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #ffffff;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
        text-align: center;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.9rem;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
    
    .cookie-banner-actions .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 1rem 1rem;
        gap: 1rem;
    }
    
    .cookie-banner-text h3 {
        font-size: 1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.8rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* ===================================
   Privacy Policy Cookie Section Styles
   =================================== */

.cookie-types {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.cookie-title {
    color: #00d4ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-list {
    list-style: none;
    padding: 0;
}

.cookie-list li {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.cookie-list li:before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cookie-list li strong {
    color: #ffffff;
}

.cookie-management {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.cookie-management-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-management-text {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-controls h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-controls-list {
    list-style: none;
    padding: 0;
}

.cookie-controls-list li {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.cookie-controls-list li:before {
    content: "→";
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cookie-controls-list li strong {
    color: #ffffff;
}

.third-party-cookies {
    background: rgba(255, 68, 68, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
    margin: 2rem 0;
}

.third-party-title {
    color: #ff4444;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.third-party-text {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.third-party-list {
    list-style: none;
    padding: 0;
}

.third-party-list li {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.third-party-list li:before {
    content: "⚠";
    color: #ff4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.third-party-list li strong {
    color: #ffffff;
}

/* Responsive Design for Cookie Section */
@media (max-width: 768px) {
    .cookie-types {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .cookie-type {
        padding: 1.25rem;
    }
    
    .cookie-management,
    .third-party-cookies {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .cookie-types {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .cookie-type {
        padding: 1rem;
    }
    
    .cookie-title,
    .cookie-management-title,
    .third-party-title {
        font-size: 1.1rem;
    }
    
    .cookie-description,
    .cookie-management-text,
    .third-party-text {
        font-size: 0.9rem;
    }
    
    .cookie-list li,
    .cookie-controls-list li,
    .third-party-list li {
        font-size: 0.85rem;
    }
    
    .cookie-management,
    .third-party-cookies {
        padding: 1rem;
        margin: 1rem 0;
    }
}

/* Extra Small Devices (320px and down) */
@media (max-width: 320px) {
    .mobile-menu {
        top: 50px;
        padding: 0.75rem;
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.625rem 0.75rem;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
}
