/* BetListPlus.com - Unique Stylesheet */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9fa;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.blp-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: blp-gradientShift 18s ease-in-out infinite;
    pointer-events: none;
}

.blp-bg-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.35);
    animation: blp-float 18s infinite ease-in-out;
}

.blp-bg-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.blp-bg-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.blp-bg-particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.blp-bg-particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.blp-bg-particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.blp-bg-particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.blp-bg-particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.blp-bg-particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 21s;
}

@keyframes blp-float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(120px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes blp-gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Typography */
.blp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Header */
.blp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blp-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
    gap: 20px;
}

.blp-nav-logo .blp-logo-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blp-nav-logo a {
    text-decoration: none;
}

.blp-burger-toggle {
    display: none !important;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.blp-close-toggle {
    display: none !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    font-size: 2rem;
    color: #dc2626;
    line-height: 1;
}

.blp-burger-line {
    width: 25px;
    height: 3px;
    background-color: #dc2626;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.blp-close-icon {
    display: block;
    font-weight: 300;
}

.blp-nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

.blp-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.blp-nav-link:hover,
.blp-nav-link.blp-active {
    color: #dc2626;
}

.blp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

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

/* Main Content */
.blp-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    position: relative;
}

/* Hero Section */
.blp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.blp-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.blp-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.blp-hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.blp-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
.blp-fade-in {
    animation: blp-fadeIn 1s ease-in;
}

.blp-fade-in-delay {
    animation: blp-fadeIn 1s ease-in 0.3s both;
}

.blp-fade-in-delay-2 {
    animation: blp-fadeIn 1s ease-in 0.6s both;
}

.blp-slide-up {
    animation: blp-slideUp 0.8s ease-out;
}

.blp-slide-up-delay {
    animation: blp-slideUp 0.8s ease-out 0.2s both;
}

.blp-slide-up-delay-2 {
    animation: blp-slideUp 0.8s ease-out 0.4s both;
}

.blp-card-animate {
    animation: blp-cardFadeIn 0.6s ease-out both;
}

.blp-card-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.blp-card-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.blp-card-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.blp-card-animate:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes blp-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes blp-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blp-cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Intro Section */
.blp-intro-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blp-intro-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    line-height: 1.8;
}

/* Highlights Section */
.blp-highlights-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.7);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-highlights-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blp-highlights-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.blp-highlight-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.blp-highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blp-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blp-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blp-card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.blp-card-text {
    color: #555;
    line-height: 1.6;
}

.blp-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blp-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Quicklinks Section */
.blp-quicklinks-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

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

.blp-quicklink-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.blp-hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.blp-quicklink-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blp-quicklink-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blp-quicklink-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Page Header */
.blp-page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blp-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.blp-page-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blp-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.blp-page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Results Section */
.blp-results-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-results-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blp-results-info {
    margin-bottom: 3rem;
}

.blp-info-list {
    list-style: none;
    padding: 0;
}

.blp-info-item {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.blp-info-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.blp-results-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.blp-results-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.blp-results-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blp-results-table-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.blp-results-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.blp-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.blp-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.blp-table th,
.blp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.blp-table tbody tr:hover {
    background: #f8f9fa;
}

.blp-verify-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.blp-verify-link:hover {
    text-decoration: underline;
}

.blp-disclaimer-text {
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* Verify Section */
.blp-verify-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.7);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-verify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blp-verify-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.blp-verify-card:hover {
    transform: translateY(-5px);
}

.blp-verify-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #dc2626;
}

.blp-verify-card-text {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blp-verify-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.blp-verify-button:hover {
    transform: scale(1.05);
}

/* Articles Section */
.blp-articles-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.blp-article:last-child {
    border-bottom: none;
}

.blp-article-image {
    position: relative;
}

.blp-article-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blp-article-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.blp-article-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blp-facts-list {
    list-style: none;
    padding: 0;
    counter-reset: fact-counter;
}

.blp-fact-item {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    counter-increment: fact-counter;
    color: #555;
    line-height: 1.8;
}

.blp-fact-item::before {
    content: counter(fact-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsible Gaming Section */
.blp-principles-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blp-principle-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.blp-principle-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
}

.blp-principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blp-principle-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.blp-principle-text {
    color: #555;
    line-height: 1.6;
}

.blp-helpline-section {
    padding: 4rem 0;
    background: rgba(248, 249, 250, 0.7);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-helpline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blp-helpline-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.blp-helpline-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #dc2626;
}

.blp-helpline-org {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blp-helpline-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.blp-helpline-website {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
}

.blp-helpline-disclaimer {
    margin-top: 2rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Resources Section */
.blp-resources-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-resources-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.blp-resource-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.blp-resource-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.blp-resource-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.blp-gamesense-link {
    background: #22c55e;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 200px;
    text-align: center;
}

.blp-gamesense-link:hover {
    background: #16a34a;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.blp-gamesense-text {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Legal Section */
.blp-legal-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.blp-legal-block {
    margin-bottom: 3rem;
}

.blp-legal-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blp-legal-list {
    list-style: none;
    padding: 0;
}

.blp-legal-item {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.blp-legal-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Section */
.blp-about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.blp-about-block {
    margin-bottom: 3rem;
}

.blp-about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blp-about-list {
    list-style: none;
    padding: 0;
}

.blp-about-item {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.blp-about-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Contact Section */
.blp-contact-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blp-contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.blp-contact-details {
    margin-top: 1.5rem;
}

.blp-contact-item {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.blp-contact-link {
    color: #dc2626;
    text-decoration: none;
}

.blp-contact-link:hover {
    text-decoration: underline;
}

.blp-contact-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.blp-contact-form {
    margin-top: 1.5rem;
}

.blp-form-group {
    margin-bottom: 1.5rem;
}

.blp-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.blp-form-input,
.blp-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.blp-form-input:focus,
.blp-form-textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.blp-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.blp-form-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blp-form-submit:hover {
    transform: scale(1.05);
}

/* Success Modal */
.blp-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: blp-fadeIn 0.3s ease;
}

.blp-success-modal.blp-show {
    display: flex;
}

.blp-success-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: blp-slideUp 0.3s ease;
}

.blp-success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
    animation: blp-scaleIn 0.5s ease;
}

.blp-success-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blp-success-message {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blp-success-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blp-success-button:hover {
    transform: scale(1.05);
}

@keyframes blp-scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Policy Section */
.blp-policy-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
}

.blp-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.blp-policy-intro {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blp-policy-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.blp-policy-subheading {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.blp-policy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.blp-policy-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.blp-policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.blp-contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.blp-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.blp-footer-regulatory-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.blp-footer-regulatory-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.blp-footer-play-safe-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.blp-footer-play-safe-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.blp-footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blp-footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.blp-footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.blp-footer-links {
    list-style: none;
    padding: 0;
}

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

.blp-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blp-footer-links a:hover {
    color: white;
}

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

.blp-footer-resources-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.blp-footer-resource-link {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.blp-footer-resource-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.blp-footer-resource-image {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.blp-footer-resource-link:hover .blp-footer-resource-image {
    opacity: 1;
}

.blp-footer-gamesense-link {
    background: #22c55e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 150px;
    text-align: center;
}

.blp-footer-gamesense-link:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.blp-footer-gamesense-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

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

.blp-footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blp-footer-links-list li {
    margin: 0;
}

.blp-footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.blp-footer-links-list a:hover {
    color: white;
    text-decoration: underline;
}

.blp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.blp-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blp-burger-toggle {
        display: flex !important;
    }
    
    .blp-close-toggle {
        display: none !important;
    }
    
    .blp-close-toggle.blp-visible {
        display: block !important;
    }
    
    .blp-close-toggle.blp-hidden {
        display: none !important;
    }
    
    .blp-burger-toggle.blp-hidden {
        display: none !important;
    }
    
    .blp-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .blp-nav-menu.blp-active {
        right: 0;
    }
    
    .blp-nav-item {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .blp-nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .blp-close-toggle {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }
    
    .blp-hero {
        min-height: 70vh;
    }
    
    .blp-article {
        grid-template-columns: 1fr;
    }
    
    .blp-contact-content {
        grid-template-columns: 1fr;
    }
    
    .blp-results-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .blp-table {
        min-width: 600px;
    }
    
    .blp-highlights-grid,
    .blp-quicklinks-grid,
    .blp-principles-grid,
    .blp-helpline-grid,
    .blp-verify-grid {
        grid-template-columns: 1fr;
    }
    
    .blp-resources-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blp-resource-image {
        max-width: 180px;
    }
    
    .blp-gamesense-link {
        min-width: 180px;
        padding: 1.2rem 2rem;
    }
    
    .blp-footer-resources-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .blp-footer-resource-image {
        max-width: 130px;
    }
    
    .blp-footer-gamesense-link {
        min-width: 150px;
        padding: 0.9rem 1.5rem;
    }
    
    .blp-footer-links-list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blp-container {
        padding: 0 15px;
    }
    
    .blp-hero-title {
        font-size: 1.8rem;
    }
    
    .blp-hero-subtitle {
        font-size: 1rem;
    }
    
    .blp-section-title {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .blp-header,
    .blp-footer,
    .blp-burger-toggle,
    .blp-close-toggle {
        display: none;
    }
    
    .blp-main {
        margin-top: 0;
    }
}
