:root {
    --primary-purple: #6A0DAD;
    --lavender: #E0BBE4;
    --medium-purple: #957DAD;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #F8F8F8;
    --accent-color: #C7B0D8; /* Slightly lighter lavender for accents */
    --error-red: #DC3545;
}

/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-purple);
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
}

h2 {
    font-size: 2.2em;
    font-weight: 700;
}

h3 {
    font-size: 1.8em;
    font-weight: 700;
}

h4 {
    font-size: 1.4em;
    font-weight: 400;
}

/* Container for content width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-purple);
    font-size: 2.5em;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1em;
    color: var(--dark-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.1s ease;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #5A0A9D; /* Darker purple on hover */
}

.btn-secondary {
    background-color: var(--medium-purple);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #8A6DAE; /* Darker medium purple on hover */
}

.btn-download {
    background-color: #4CAF50; /* Google Play green */
    color: var(--light-text);
    font-size: 1.1em;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-download:hover {
    background-color: #45A049;
}

/* Header Section */
.main-header {
    background-color: var(--primary-purple);
    padding: 20px 0;
    color: var(--light-text);
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.logo-link h3 {
    font-size: 25px !important;
}
.logo {
    height: 60px;
    width: auto;
}

.company-name {
    font-size: 2.8em;
    color: var(--light-text);
    margin: 0;
    letter-spacing: 2px;
}

.slogan {
    font-size: 1.1em;
    color: var(--lavender);
    margin: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--lavender);
}

.hero-cta {
    font-size: 1.2em;
    padding: 15px 35px;
    border-radius: 10px;
}

/* Featured Game Detail Section */
.game-detail-section {
    background-color: var(--lavender);
    color: var(--dark-text);
}

.game-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .game-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.main-game-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.screenshot-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-info {
    text-align: left;
}

.game-title {
    color: var(--primary-purple);
    font-size: 2.8em;
    margin-bottom: 10px;
}

.developer-info {
    font-size: 1.1em;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.game-rating {
    color: #FFD700; /* Gold for stars */
    font-size: 1.4em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-rating span {
    color: var(--dark-text);
    font-size: 0.8em;
    margin-left: 5px;
}

.game-description-short {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.game-description-long h4 {
    color: var(--primary-purple);
    margin-top: 30px;
    margin-bottom: 15px;
}

.game-description-long p {
    margin-bottom: 15px;
}

.game-description-long ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.game-description-long ul li {
    position: relative;
    margin-bottom: 10px;
}

.game-description-long ul li::before {
    content: '\2022'; /* Bullet point */
    color: var(--primary-purple);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.system-requirements {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.system-requirements h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.system-requirements ul {
    list-style: none;
    padding: 0;
}

.system-requirements ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.system-requirements ul li::before {
    content: '\2713'; /* Checkmark icon */
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Player Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--lavender);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px; /* Ensure equal height */
}

.player-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-purple);
}

.player-name {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1em;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-date {
    font-size: 0.9em;
    color: #666;
    text-align: right;
    display: block;
}

/* Form Styles */
.game-submission-form, .newsletter-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--lavender);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid var(--medium-purple);
    border-radius: 8px;
    font-size: 1em;
    background-color: var(--white);
    color: var(--dark-text);
    transition: border-color 0.1s ease, box-shadow 0.1s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.2);
    outline: none;
}

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

.game-submission-form .btn, .newsletter-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border-radius: 10px;
}

.error-message {
    color: var(--error-red);
    font-size: 0.9em;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

/* About LevelUpWorld Section */
.about-section {
    background-color: var(--white);
    text-align: center;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15em;
    color: var(--dark-text);
}

/* Footer Section */
.main-footer {
    background-color: var(--primary-purple);
    color: var(--light-text);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-link-footer {
    display: block;
}

.logo-footer {
    height: 50px;
    width: auto;
}

.footer-copyright {
    font-size: 0.9em;
    color: var(--lavender);
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.footer-link {
    color: var(--lavender);
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.1s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    z-index: 1000;
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner-content p {
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cookie-policy-link {
    color: var(--lavender);
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: var(--white);
}

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

.cookie-banner .btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

.cookie-banner .btn-primary {
    background-color: var(--primary-purple);
}

.cookie-banner .btn-primary:hover {
    background-color: #5A0A9D;
}

.cookie-banner .btn-secondary {
    background-color: var(--medium-purple);
}

.cookie-banner .btn-secondary:hover {
    background-color: #8A6DAE;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease, visibility 0.1s ease;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: var(--dark-text);
}

.cookie-modal-content h3 {
    color: var(--primary-purple);
    margin-bottom: 25px;
    text-align: center;
}

.cookie-modal-content p {
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--lavender);
    border-radius: 8px;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: var(--primary-purple);
}

.cookie-category label {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-category .category-desc {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
    margin-bottom: 0;
    padding-left: 25px; /* Align with checkbox text */
}

.cookie-modal-actions {
    margin-top: 30px;
    text-align: right;
}

.cookie-modal-actions .btn {
    padding: 10px 20px;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-description-long ul li {
        margin-left: 10px;
    }
    .main-header {
        padding: 10px 0;
    }
    .logo-link h3 {
        font-size: 18px !important;
    }
    .hero-title {
        font-size: 2.5em;
    }
    .hero-description {
        font-size: 1.1em;
    }
    .company-name {
        font-size: 2em;
    }
    .slogan {
        font-size: 0.9em;
    }
    .game-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .main-game-image {
        max-width: 100%;
    }
    .screenshot-gallery {
        gap: 10px;
    }
    .screenshot-thumbnail {
        width: 80px;
        height: 80px;
    }
    .game-title {
        font-size: 2.2em;
    }
    .section-title {
        font-size: 2em;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }
    .hero-description {
        font-size: 1em;
    }
    .hero-cta {
        padding: 10px 20px;
        font-size: 1em;
    }
    .company-name {
        font-size: 1.5em;
    }
    .logo {
        height: 50px;
    }
    .section-padding {
        padding: 50px 0;
    }
    .game-submission-form, .newsletter-form {
        padding: 25px;
    }
    .footer-content {
        gap: 15px;
    }
    .footer-nav {
        gap: 8px;
    }
}/* Parent container for generic content */
.regShieldWrap {
    padding-top: 60px; /* Top padding for the section */
    padding-bottom: 60px; /* Bottom padding for the section */
    padding-left: 20px; /* Left padding for content */
    padding-right: 20px; /* Right padding for content */
    max-width: 900px; /* Max width for content readability */
    margin: 0 auto; /* Center the content block */
    color: var(--dark-text); /* Default text color for this section */
}

/* Headings within regShieldWrap - smaller sizes */
.regShieldWrap h1 {
    font-size: 2em; /* Moderate size for main section title */
    margin-bottom: 0.8em; /* Spacing below heading */
    color: var(--primary-purple); /* Primary color for headings */
    line-height: 1.2; /* Line height for readability */
}

.regShieldWrap h2 {
    font-size: 1.7em; /* Smaller than h1 */
    margin-bottom: 0.7em; /* Spacing below heading */
    color: var(--primary-purple);
    line-height: 1.3;
}

.regShieldWrap h3 {
    font-size: 1.4em; /* Smaller than h2 */
    margin-bottom: 0.6em; /* Spacing below heading */
    color: var(--primary-purple);
    line-height: 1.4;
}

.regShieldWrap h4 {
    font-size: 1.2em; /* Smaller than h3 */
    margin-bottom: 0.5em; /* Spacing below heading */
    color: var(--primary-purple);
    line-height: 1.5;
}

.regShieldWrap h5 {
    font-size: 1em; /* Smallest heading size, close to body text */
    margin-bottom: 0.4em; /* Spacing below heading */
    color: var(--primary-purple);
    line-height: 1.6;
}

/* Paragraphs within regShieldWrap */
.regShieldWrap p {
    font-size: 1em; /* Standard paragraph font size */
    margin-bottom: 1em; /* Spacing between paragraphs */
    line-height: 1.7; /* Enhanced line height for readability */
    color: var(--dark-text); /* Standard text color */
}

/* Unordered lists within regShieldWrap */
.regShieldWrap ul {
    list-style: disc; /* Default bullet style */
    margin-top: 1em; /* Spacing above the list */
    margin-bottom: 1em; /* Spacing below the list */
    padding-left: 25px; /* Indentation for bullet points */
    color: var(--dark-text);
}

/* List items within regShieldWrap */
.regShieldWrap li {
    font-size: 1em; /* Standard list item font size */
    margin-bottom: 0.5em; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: var(--dark-text);
}
