body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
.container {
    padding: 30px 15px;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}
.description {
    padding: 1.5rem;
    font-size: 1.0rem;
    text-align: justify;
    text-justify: inter-word;
}
.span{
    margin-left: 10px;
    margin-bottom: 10px;
}
.sales{
    padding-top: 30px;
    font-size: 1.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.play_logo {
    max-width: 300px; /* Default size for desktop */
    margin-top: 40px;
}

@media (max-width: 768px) {
    .play_logo {
        max-width: 250px; /* Scale down for tablets */
    }
}

@media (max-width: 480px) {
    .play_logo {
        max-width: 200px; /* Further scale down for mobile devices */
    }
}
.legal{
    color: whitesmoke;
    font-size: small;
    text-decoration: none;
}
.footer{
    padding-top: 50px;
    display: block;
    font-size: 14px;
    padding: 0px;
    padding-top: 25px;
    text-align: center;
    border-top: 2px solid whitesmoke;
    margin: 40px auto 0;
    width: fit-content;
}
footer a {
    color: whitesmoke;
    text-decoration: none;
    margin: 0 5px;
}
.cover {
    width: 500px; /* Default size for desktop */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .cover {
        width: 350px; /* Scale down for tablets */
    }
}

@media (max-width: 480px) {
    .cover {
        width: 200px; /* Further scale down for mobile devices */
    }
}

.content {
    /*background-color: #56af98;*/
    /*border-radius: 10px;*/
    /*color: black;*/
    border-bottom: 2px white solid;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}
.by {
    padding: 0.1rem;
    font-style: italic;
    font-size: 1.2rem;
}
.author {
    font-size: 1.6rem;
}
.audiobook {
    font-style: italic;
    font-size: 1.2rem;
}
.header {
    text-decoration: none;
    padding: 10px;
    text-align: left;
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
    height: 2rem;
    align-items: center;
}
.banner {
    text-decoration: none;
    color: #56af98;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 1rem;
}
.logo {
    height: 3rem;
    max-width: 250px; /* Make the logo smaller */
    margin-bottom: 20px;
    border-radius: 50%;
}
.FadeAway{
    position: relative;
    top: -250px;
    height: 250px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 15px;
    row-gap: 50px; /* increased spacing between rows */
    margin-top: 15px;
    margin-bottom: 30px; /* added spacing below gallery grid */
}

.gallery-item {
    flex: 0 0 200px; /* fixed width for each cover */
    text-align: center;
    position: relative; /* ensure local positioning */
    transition: transform 0.3s ease;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px; /* increased transition height */
    background: -moz-linear-gradient(top, black 0%, transparent 100%);
    background: -webkit-linear-gradient(top, black 0%, transparent 100%);
    background: linear-gradient(to top, black 0%, transparent 100%);
    border-radius: 5px;
    pointer-events: none;
}

.cover-text {
    position: absolute;
    top: 80%;
    left: 5px;
    right: 5px;
    color: white;
    text-shadow: 1px 1px 2px black;
    margin: 0;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* limits to 3 lines */
    -webkit-box-orient: vertical;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.gallery-item p em {
    font-style: italic;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 5rem; /* Default size for desktop */
    margin: 20px 0;
    color: #56af98;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem; /* Scale down for tablets and smaller screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem; /* Further scale down for mobile devices */
    }
}

.left-aligned {
    text-align: left;
}

.small-title {
    font-size: 2rem; /* Make the title smaller */
    color: white; /* Make the title white */
    text-align: center;
    margin-top: -250px; /* Remove the margin between the cover image and the title */
}

.sales-intro {
    display: flex;
    flex-direction: column; /* Arrange tiles in a vertical chain */
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px; /* Add spacing below sales blocks */
}

.sales-block {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sales-columns {
    display: flex;
    flex-direction: row; /* Default: image on the left */
    align-items: center;
    gap: 20px;
}

.sales-columns.reverse {
    flex-direction: row-reverse; /* Ensure image is on the right */
}

.sales-image {
    width: 250px; /* Adjust image size */
    height: auto;
    border-radius: 10px;
}

.sales-text-column {
    flex: 1; /* Allow text column to take remaining space */
}

.sales-text-column.left-aligned {
    text-align: left; /* Align text to the left */
}

.sales-text-column.right-aligned {
    text-align: right; /* Ensure text is aligned to the right */
    margin-left: auto; /* Push text to the right */
}

.sales-title {
    font-size: 1.5rem;
    color: #56af98;
    margin-bottom: 10px;
}

.sales-text {
    font-size: 1rem;
    color: white;
    margin: 0;
}

@media (min-width: 769px) {
    .header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px; /* Add spacing between the logo and title */
        margin-bottom: 20px;
    }

    .header-logo {
        max-width: 100px; /* Adjust logo size */
        height: auto;
    }

    .header-title {
        font-size: 5rem; /* Adjust title size */
        color: #56af98;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .sales-columns,
    .sales-columns.reverse {
        flex-direction: column; /* Stack image and text in a column */
        text-align: center; /* Center-align text for mobile */
    }

    .sales-image {
        margin-bottom: 15px; /* Add spacing below the image */
    }
}

/* Welcome Page Styles */

/* Welcome Hero Section */
.welcome-hero {
    position: relative;
    background: linear-gradient(135deg, #56af98 0%, #2a6d5e 100%);
    padding: 80px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    gap: 40px;
}

.welcome-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.welcome-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    flex: 1;
}

.welcome-hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.welcome-hero-logo {
    max-width: 80px;
    height: auto;
    flex-shrink: 0;
}

.welcome-hero-title {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.welcome-hero-subtitle {
    font-size: 1.5rem;
    color: #e0f7f3;
    margin-bottom: 40px;
    font-weight: 300;
}

.welcome-play-badge {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.welcome-play-badge img {
    width: 200px;
    height: auto;
}

.welcome-play-badge:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.welcome-hero-note {
    color: #fff;
    font-size: 1rem;
    margin-top: 20px;
    opacity: 0.9;
}

.welcome-hero-image {
    position: relative;
    z-index: 1;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.welcome-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

/* Welcome Features Section */
.welcome-features-section {
    margin: 80px 0;
}

.welcome-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.welcome-feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.welcome-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #56af98, #6eceb5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.welcome-feature-card:hover {
    transform: translateY(-10px);
    border-color: #56af98;
    box-shadow: 0 15px 40px rgba(86, 175, 152, 0.3);
}

.welcome-feature-card.highlight {
    border-color: #56af98;
    background: linear-gradient(135deg, #1a4d3e 0%, #2a2a2a 100%);
    box-shadow: 0 10px 30px rgba(86, 175, 152, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(13%) saturate(1476%) hue-rotate(115deg) brightness(89%) contrast(87%);
}

.feature-title {
    font-size: 1.6rem;
    color: #6eceb5;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-text {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.6;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Welcome Gallery Section */
.welcome-gallery-section {
    margin: 80px 0;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Welcome CTA Banner */
.welcome-cta-banner {
    background: linear-gradient(135deg, #cfa242 0%, #8a6d2e 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0 40px 0;
    box-shadow: 0 15px 50px rgba(207, 162, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.welcome-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.welcome-cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.welcome-cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.welcome-cta-text {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0;
    opacity: 0.9;
}

.welcome-play-badge-bottom {
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.welcome-play-badge-bottom img {
    width: 220px;
    height: auto;
}

.welcome-play-badge-bottom:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.legal-notice {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Welcome Page Mobile Responsive */
@media (max-width: 768px) {
    .welcome-hero {
        flex-direction: column;
        padding: 60px 15px;
        min-height: auto;
        text-align: center;
    }

    .welcome-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .welcome-hero-header {
        flex-direction: column;
        gap: 15px;
    }

    .welcome-hero-logo {
        max-width: 60px;
    }

    .welcome-hero-title {
        font-size: 2rem;
    }

    .welcome-hero-subtitle {
        font-size: 1.2rem;
    }

    .welcome-play-badge img {
        width: 160px;
    }

    .welcome-hero-image {
        width: 250px;
        height: 250px;
        margin-top: 20px;
    }

    .welcome-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .welcome-cta-banner {
        padding: 40px 20px;
    }

    .welcome-cta-title {
        font-size: 1.8rem;
    }

    .welcome-cta-text {
        font-size: 1rem;
    }

    .welcome-play-badge-bottom img {
        width: 180px;
    }
}

/* Publisher Landing Page Styles */

/* Hero Section */
.publisher-hero {
    position: relative;
    background: linear-gradient(135deg, #cfa242 0%, #000000 100%);
    padding: 80px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(86, 175, 152, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6eceb5;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-note {
    color: #fff;
    font-size: 1rem;
    margin-top: 20px;
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    right: -50px;
    bottom: -50px;
    opacity: 0.1;
    z-index: 1;
    width: 500px;
    height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTA Buttons */
.cta-button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #56af98 0%, #6eceb5 100%);
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(86, 175, 152, 0.4);
    border: 3px solid #6eceb5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, #6eceb5 0%, #7fdfc5 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(86, 175, 152, 0.6);
    text-decoration: none;
    color: #000;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(86, 175, 152, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(86, 175, 152, 0.8);
    }
    100% {
        box-shadow: 0 8px 20px rgba(86, 175, 152, 0.4);
    }
}

.cta-button-secondary {
    display: inline-block;
    background-color: #56af98;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(86, 175, 152, 0.3);
    border: 2px solid #6eceb5;
    position: relative;
    z-index: 3;
}

.cta-button-secondary:hover {
    background-color: #6eceb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 175, 152, 0.5);
    text-decoration: none;
    color: #000;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(86, 175, 152, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(86, 175, 152, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #56af98;
    background: rgba(86, 175, 152, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #6eceb5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Section */
.why-section {
    margin: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 3rem;
    color: #56af98;
    margin-bottom: 50px;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #56af98, #6eceb5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #56af98;
    box-shadow: 0 15px 40px rgba(86, 175, 152, 0.3);
}

.benefit-card.highlight {
    border-color: #56af98;
    background: linear-gradient(135deg, #1a4d3e 0%, #2a2a2a 100%);
    box-shadow: 0 10px 30px rgba(86, 175, 152, 0.2);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(13%) saturate(1476%) hue-rotate(115deg) brightness(89%) contrast(87%);
}

.benefit-title {
    font-size: 1.6rem;
    color: #6eceb5;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.benefit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #56af98 0%, #2a6d5e 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 15px 50px rgba(86, 175, 152, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.cta-banner-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-banner-text {
    font-size: 1.3rem;
    color: #e0f7f3;
    margin-bottom: 0;
}

.contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}

.contact-title {
    font-size: 2rem;
    color: #56af98;
    text-align: center;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #56af98;
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: normal;
    text-align: left;
}

.form-input,
.form-textarea {
    background-color: #1a1a1a;
    border: 2px solid #333;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.form-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-submit {
    background-color: #56af98;
    color: black;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #6eceb5;
    box-shadow: 0 4px 8px rgba(86, 175, 152, 0.3);
}

.alert-success {
    background-color: #2d5f4d;
    border: 2px solid #56af98;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(86, 175, 152, 0.3);
    animation: slideDown 0.4s ease-out;
}

.alert-error {
    background-color: #5f2d2d;
    border: 2px solid #ff6b6b;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auth Pages Styles */
.auth-hero {
    background: linear-gradient(135deg, #56af98 0%, #1a4d3e 100%);
    text-align: center;
    margin: 0 auto 20px;
    border-radius: 15px;
    min-height: 200px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-hero-title {
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.auth-hero-subtitle {
    font-size: 1.3rem;
    color: #e0f7f3;
    margin: 0;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form h2 {
    color: #56af98;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 25px;
}

.auth-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 25px;
}

.auth-form-title {
    flex: 1;
    text-align: left;
}

.auth-form-title h2 {
    margin: 0;
}

.auth-icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid white;
}

.auth-footer p {
    color: #ccc;
    margin: 0;
}

.auth-link {
    color: #56af98;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #6eceb5;
    text-decoration: none;
}

/* Publisher Page Mobile Responsive */
@media (max-width: 768px) {
    .publisher-hero {
        padding: 60px 15px;
        min-height: 400px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .cta-button-primary {
        font-size: 1.1rem;
        padding: 15px 35px;
    }

    .cta-button-secondary {
        font-size: 1.1rem;
        padding: 15px 35px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner-title {
        font-size: 1.8rem;
    }

    .cta-banner-text {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}


/* ================================================================
   7b. Cookie Notice
   ================================================================ */
.cookie-notice {
    margin-top: 0px;
    text-align: center;
}

.cookie-notice p {
    margin: 0;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}