/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Work Sans */
@font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Work Sans';
    src: url('/fonts/WorkSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Space Grotesk */
  @font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Space Grotesk';
    src: url('/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0A1628;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26, 45, 75, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 55, 90, 0.2) 0%, transparent 50%);
    color: #E8EDF5;
    min-height: 100vh;
    line-height: 1.65;
    font-weight: 400;
}

/* Age Verification Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.95);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1A2F4A;
    border-radius: 8px;
    padding: 50px 60px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 200, 87, 0.2);
}

.age-modal p {
    margin-bottom: 20px;
    color: #E8EDF5;
    font-size: 18px;
    line-height: 1.6;
}

.age-question {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.age-support {
    font-size: 16px;
    margin-bottom: 30px;
}

.age-support a {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-age-yes,
.btn-age-no {
    padding: 14px 32px;
    border: 2px solid;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Work Sans', sans-serif;
}

.btn-age-yes {
    background-color: #FFC857;
    border-color: #FFC857;
    color: #0A1628;
}

.btn-age-no {
    background-color: transparent;
    border-color: #4A6FA5;
    color: #E8EDF5;
}

.btn-age-yes:hover {
    background-color: #FFD580;
    border-color: #FFD580;
}

.btn-age-no:hover {
    border-color: #6B8FC7;
    background-color: rgba(74, 111, 165, 0.1);
}

/* Denied Access Modal */
.denied-modal {
    text-align: center;
    max-width: 500px;
}

.denied-icon-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.denied-age-icon {
    width: 130px;
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.denied-icon-circle {
    width: 110px;
    height: 110px;
    border: 3px solid #FF5C47;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    color: #FF5C47;
    font-family: 'Space Grotesk', sans-serif;
}

.denied-icon-plus {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 36px;
    font-weight: 700;
    color: #FF5C47;
    font-family: 'Space Grotesk', sans-serif;
}

.denied-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.denied-text {
    font-size: 17px;
    color: #9FB4D1;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #152235;
    border-radius: 6px;
    padding: 28px 36px;
    max-width: 800px;
    width: 90%;
    border: 1px solid rgba(255, 200, 87, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-content p {
    color: #E8EDF5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.cookie-link {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cookie-reject,
.btn-cookie-accept {
    padding: 10px 24px;
    border: 2px solid;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Work Sans', sans-serif;
}

.btn-cookie-reject {
    background-color: transparent;
    border-color: #4A6FA5;
    color: #E8EDF5;
}

.btn-cookie-accept {
    background-color: #FFC857;
    border-color: #FFC857;
    color: #0A1628;
}

.btn-cookie-reject:hover {
    border-color: #6B8FC7;
    background-color: rgba(74, 111, 165, 0.1);
}

.btn-cookie-accept:hover {
    background-color: #FFD580;
    border-color: #FFD580;
}

/* Header */
.header {
    background-color: rgba(10, 22, 40, 0.6);
    padding: 22px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.header-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-link {
    color: #C8D4E8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: #FFC857;
}

/* Hero Section */
.hero {
    padding: 70px 50px 60px;
    text-align: left;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 17px;
    color: #9FB4D1;
    margin-bottom: 38px;
    font-weight: 400;
    max-width: 700px;
}

.filter-bar {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 18px;
    background-color: rgba(26, 47, 74, 0.6);
    border: 1px solid rgba(74, 111, 165, 0.3);
    border-radius: 3px;
    color: #C8D4E8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-family: 'Work Sans', sans-serif;
}

.filter-btn:hover {
    background-color: rgba(74, 111, 165, 0.2);
    border-color: rgba(74, 111, 165, 0.5);
    color: #E8EDF5;
}

.filter-btn.active {
    background-color: #FFC857;
    border-color: #FFC857;
    color: #0A1628;
}

.filter-icon {
    font-size: 11px;
    opacity: 0.7;
}

/* Cards Section */
.cards-section {
    padding: 20px 50px 100px;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.betting-card {
    position: relative;
    background-color: #152235;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
}

.betting-card:hover {
    background-color: #1A2F4A;
    transform: translateY(-2px);
}

.card-inner {
    display: flex;
    width: 100%;
    gap: 0;
}

.card-logo-section {
    background-color: #0F1B2E;
    padding: 28px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    border-right: 1px solid rgba(255, 200, 87, 0.1);
}

.card-logo {
    max-width: 160px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.card-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar {
    width: 120px;
    height: 6px;
    background-color: rgba(74, 111, 165, 0.3);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFC857 0%, #FFD580 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.rating-value {
    color: #FFC857;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.card-reviews {
    color: #7A94B8;
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 400;
}

.card-offer {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 1.4;
    font-family: 'Space Grotesk', sans-serif;
}

.card-features {
    list-style: none;
    margin-bottom: 26px;
    flex-grow: 1;
    padding: 0;
}

.card-features li {
    color: #C8D4E8;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.feature-indicator {
    color: #FFC857;
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
}

.btn-view-offer {
    width: 100%;
    max-width: 280px;
    padding: 13px 24px;
    background-color: transparent;
    border: 2px solid #FFC857;
    border-radius: 4px;
    color: #FFC857;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 0.2px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-view-offer:hover {
    background-color: #FFC857;
    color: #0A1628;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #0F1B2E;
    padding: 70px 50px 40px;
    border-top: 1px solid rgba(255, 200, 87, 0.15);
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column p {
    color: #9FB4D1;
    font-size: 13px;
    line-height: 1.85;
    font-weight: 400;
}

.footer-regulatory {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 200, 87, 0.1);
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
}

.reg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #C8D4E8;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

.reg-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #C8D4E8;
    transition: opacity 0.2s;
}

.reg-link:hover {
    opacity: 0.8;
}

.reg-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
}

.reg-logo.age-logo {
    width: 52px;
    height: 52px;
}

.reg-icon {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 200, 87, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFC857;
    font-weight: 600;
}

.reg-icon.age-icon {
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #C8D4E8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    font-weight: 500;
}

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

.separator {
    color: #4A6FA5;
    font-size: 13px;
}

.footer-copyright {
    text-align: center;
    color: #7A94B8;
    font-size: 12px;
    margin-top: 0;
    font-weight: 400;
}

/* About Page Styles */
.about-page {
    min-height: 100vh;
    padding: 0;
}

.about-header {
    background-color: rgba(10, 22, 40, 0.6);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    backdrop-filter: blur(8px);
}

.about-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px 100px;
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-update {
    color: #9FB4D1;
    font-size: 14px;
    margin-bottom: 50px;
    font-weight: 400;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #FFC857;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.about-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 32px;
}

.about-section p {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-section ul {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 24px;
}

.about-section li {
    margin-bottom: 12px;
    list-style-type: disc;
}

.about-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.about-section a {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.about-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.about-info-box {
    background-color: #152235;
    border-left: 3px solid #FFC857;
    padding: 24px 32px;
    margin: 30px 0;
    border-radius: 4px;
}

.about-info-box p {
    margin-bottom: 0;
    color: #E8EDF5;
}

.about-contact {
    background-color: #152235;
    padding: 32px;
    border-radius: 6px;
    margin-top: 40px;
}

/* Privacy Page Styles */
.privacy-page {
    min-height: 100vh;
    padding: 0;
}

.privacy-header {
    background-color: rgba(10, 22, 40, 0.6);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    backdrop-filter: blur(8px);
}

.privacy-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px 100px;
}

.privacy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.privacy-update {
    color: #9FB4D1;
    font-size: 14px;
    margin-bottom: 50px;
    font-weight: 400;
}

.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #FFC857;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: -0.3px;
}

.privacy-section h2:first-of-type {
    margin-top: 0;
}

.privacy-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 28px;
}

.privacy-section p {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.privacy-section ul {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 24px;
}

.privacy-section li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.privacy-section a {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.privacy-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.privacy-info-box {
    background-color: #152235;
    border-left: 3px solid #FFC857;
    padding: 24px 32px;
    margin: 30px 0;
    border-radius: 4px;
}

.privacy-info-box p {
    margin-bottom: 12px;
    color: #E8EDF5;
}

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

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.contact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.contact-list li:nth-child(1)::before {
    content: '📧';
}

.contact-list li:nth-child(2)::before {
    content: '📬';
}

.contact-list li:nth-child(3)::before {
    content: '🧑‍💼';
}

.contact-list li:nth-child(4)::before {
    content: '🌐';
}

/* Terms Page Styles */
.terms-page {
    min-height: 100vh;
    padding: 0;
}

.terms-header {
    background-color: rgba(10, 22, 40, 0.6);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    backdrop-filter: blur(8px);
}

.terms-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px 100px;
}

.terms-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.terms-update {
    color: #9FB4D1;
    font-size: 14px;
    margin-bottom: 50px;
    font-weight: 400;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFC857;
    margin-bottom: 18px;
    margin-top: 35px;
    letter-spacing: -0.3px;
}

.terms-section h2:first-of-type {
    margin-top: 0;
}

.terms-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    margin-top: 24px;
}

.terms-section p {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.terms-section ul {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.terms-section li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.terms-section a {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.terms-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.terms-info-box {
    background-color: #152235;
    border-left: 3px solid #FFC857;
    padding: 24px 32px;
    margin: 30px 0;
    border-radius: 4px;
}

.terms-info-box p {
    margin-bottom: 12px;
    color: #E8EDF5;
}

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

.terms-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.terms-contact-icon {
    font-size: 20px;
}

/* Responsible Page Styles */
.responsible-page {
    min-height: 100vh;
    padding: 0;
}

.responsible-header {
    background-color: rgba(10, 22, 40, 0.6);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    backdrop-filter: blur(8px);
}

.responsible-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px 100px;
}

.responsible-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.responsible-update {
    color: #9FB4D1;
    font-size: 14px;
    margin-bottom: 50px;
    font-weight: 400;
}

.responsible-section {
    margin-bottom: 45px;
}

.responsible-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #FFC857;
    margin-bottom: 20px;
    margin-top: 40px;
    letter-spacing: -0.3px;
}

.responsible-section h2:first-of-type {
    margin-top: 0;
}

.responsible-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 28px;
}

.responsible-section p {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.responsible-section ul {
    color: #C8D4E8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 24px;
}

.responsible-section li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.responsible-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

.responsible-section a {
    color: #FFC857;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.responsible-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.responsible-info-box {
    background-color: #152235;
    border-left: 3px solid #FFC857;
    padding: 24px 32px;
    margin: 30px 0;
    border-radius: 4px;
}

.responsible-info-box p {
    margin-bottom: 12px;
    color: #E8EDF5;
}

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

.resource-item {
    margin-bottom: 20px;
    padding-left: 0;
}

.resource-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFC857;
    margin-bottom: 8px;
}

.resource-item p {
    margin-bottom: 6px;
}

/* Responsive Styles for All Pages */
@media (max-width: 968px) {
    .about-content,
    .privacy-content,
    .terms-content,
    .responsible-content {
        padding: 50px 30px 70px;
    }

    .about-title,
    .privacy-title,
    .terms-title,
    .responsible-title {
        font-size: 34px;
    }

    .about-section h2,
    .privacy-section h2,
    .responsible-section h2 {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .about-header-container,
    .privacy-header-container,
    .terms-header-container,
    .responsible-header-container {
        flex-direction: column;
        gap: 18px;
        padding: 0 30px;
    }

    .about-content,
    .privacy-content,
    .terms-content,
    .responsible-content {
        padding: 40px 30px 60px;
    }

    .about-title,
    .privacy-title,
    .terms-title,
    .responsible-title {
        font-size: 28px;
    }

    .about-section h2,
    .privacy-section h2,
    .responsible-section h2 {
        font-size: 22px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .about-section h3,
    .privacy-section h3,
    .terms-section h3,
    .responsible-section h3 {
        font-size: 18px;
    }}

/* Responsive Design */
@media (max-width: 1200px) {
    .card-logo-section {
        min-width: 180px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 38px;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-inner {
        flex-direction: column;
    }
    
    .card-logo-section {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 50px 30px 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 18px;
        padding: 0 30px;
    }
    
    .cards-section {
        padding: 20px 30px 70px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .footer {
        padding: 50px 30px 35px;
    }
    
    .card-content {
        padding: 24px 28px;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-bar {
        gap: 8px;
    }
    
    .btn-view-offer {
        max-width: 100%;
    }
}
