/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f5f5f5;
    max-width: 100%;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Variables */
:root {
    --primary-blue: #6bb8ff;
    --primary-red: #d84315;
    --primary-green: #4caf50;
    --warning-blue: #0078ff;
    --text-dark: #000000;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light-gray: #f5f5f5;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
.header {
    text-align: center;
    background-color: var(--bg-white);
}

.verification-banner {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.check-icon {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 8px;
}

.signature {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Dancing Script', cursive;
    text-align: right;
    line-height: 1.2;
}

.logo-container {
    padding: 20px 0;
    background-color: var(--bg-light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 300px;
}

/* Hero section styles */
.hero {
    background-color: var(--bg-light-gray);
    padding: 20px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-image {
    margin: 20px auto;
    max-width: 600px;
}

.main-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Counter section styles */
.counter-section {
    margin: 30px 0;
}

.counter-heading {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
}

.hourglass-icon {
    display: inline-block;
}

.counter {
    font-weight: bold;
}

.cta-text {
    font-size: 20px;
    margin: 20px 0;
}

/* CTA Button styles */
.cta-button {
    display: block;
    background-color: var(--primary-red);
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 30px;
    margin: 30px auto;
    border-radius: 5px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 600px;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.warning-text {
    margin: 20px 0;
    font-size: 18px;
}

.warning-label {
    color: var(--warning-blue);
    font-weight: bold;
}

/* Artist section styles */
.artist-section {
    background-color: var(--bg-light-gray);
    padding: 40px 0;
    text-align: center;
}

.artist-content {
    max-width: 800px;
    margin: 0 auto;
}

.artist-image {
    max-width: 100%;
    margin: 0 auto;
}

/* As Seen On section styles */
.as-seen-on {
    background-color: var(--bg-light-gray);
    padding: 40px 0;
    text-align: center;
}

.section-heading {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-heading::before,
.section-heading::after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: #ccc;
    position: relative;
    vertical-align: middle;
    margin: 0 20px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.media-logo {
    height: 50px;
}

.media-text {
    font-size: 18px;
    margin: 20px 0;
}

.verification {
    margin: 20px 0;
    font-size: 16px;
}

.verified-icon {
    display: inline-block;
    background-color: #333;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
}

.brandpush {
    font-weight: bold;
}

/* Testimonials section styles */
.testimonials {
    background-color: var(--bg-light-gray);
    padding: 40px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.testimonial-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100%;
    height: auto;
}

/* Portfolio section styles */
.portfolio {
    background-color: var(--bg-light-gray);
    padding: 40px 0;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: auto;
}

/* FAQ section styles */
.faq-section {
    background-color: var(--bg-white);
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: "❓";
    position: absolute;
    left: 0;
    top: 0;
}

.faq-answer {
    padding-left: 30px;
}

.faq-answer p {
    margin-bottom: 15px;
}

/* Ratings section styles */
.ratings-section {
    margin: 40px 0;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rating-score {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.five-stars, .four-stars, .three-stars, .two-stars, .one-star {
    margin: 5px 0;
}

.total-reviews {
    font-size: 14px;
    color: var(--text-gray);
}

/* Footer styles */
.footer {
    background-color: var(--bg-light-gray);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: var(--text-gray);
}

/* Responsive styles will be added in the next step */
