/* Reset and Base Styles */
:root {
    --primary-color: #29b0f8;
    --secondary-color: #9B59B6;
    --text-color: #f2f2f2;
    --light-gray: #f5f5f5;
    --color-dark: #1B1F3B;
    --color-white: #ffffff;
    --border-color: #ddd;
    --color-card: #2C2F48;
    --color-header: #2C2F48;
    --color-green: #2ECC71;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --max-width: 1200px;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--color-dark);
}

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

/* Typography */
h1, h2, h3 {
    color: var(--primary-color);
    font-family: var(--font-montserrat);
}

h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 3px 2px 0px var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-poppins);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.15em;
}

strong {
    color: var(--primary-color);
}

.sticky.mobile {
    display: flex !important;
}

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%
}

.sticky a {
    border-radius: 0 !important;
    width: 100% !important
}

.cta {
    display: flex;
    align-items: center;
    height: 55px;
    justify-content: center;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    flex: 0 0 auto;
    color: var(--text-color);
    font-size: 24px;
    background: var(--color-green);
    border-radius: 100px;
    width: 247px;
    height: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

/* Header */
.header {
    transition: ease-in-out all .5s;
    background-color: #2c2f487d;
    backdrop-filter: blur(8px);
    padding: 1rem;
    height: 90px;
}

.header__content {
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.logo {
    height: auto;
    width: 100%;
    max-width: 300px;
}

main {
    padding: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo.desktop {
    display: none;
}

.logo.mobile {
    display: none;
}

/* Score Section */
.score-section {
    margin-bottom: 2rem;
}

.score-card.mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding: 15px;
    background: var(--color-card);
    border-radius: 8px;
    border: 2px solid var(--color-green);
}

.score-card.mobile .logo {
    margin: 0 1em 0 0;
    max-width: 200px;
    width: auto;
    height: auto;
}

.score-card.mobile .brandScore{
    flex-direction: column;
    row-gap: 5px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.score-card.mobile .scoreNumber{
    font-size: 20px;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 30px;
    border: var(--primary-color) 5px solid;
    background-color: #0d1b2a;
}

.score-card.desktop {
    display: none;
}

.score-card {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--color-green);
}

.score-card h2{
color: var(--color-green);
}

.score-card.desktop .cta-button{
    width: 100%;
}

.scoreNumber {
    border: #29b0f8 10px solid;
}

.score-card.desktop .scoreNumber{
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 100px;
    height: 100px
}

.ratingAmountText{
    font-size: 17px;
    margin: 1rem 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--color-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    margin: 1rem 0 2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

/* Content Sections */
.content-intro .logo{
    margin-bottom: 2rem;
}

.preview-img {
    margin: 1rem 0;
    border-radius: 8px;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 8px;
}

.pros-header, .cons-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pros-header img, .cons-header img {
    width: 30px;
    height: 30px;
}

.pros-list p, .cons-list p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.pros-list img, .cons-list img {
    width: 20px;
    height: 20px;
}

/* Details Section */
.details {
    margin: 2rem 0;
}

.details h2 {
    margin-bottom: 1rem;
}

.details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.details li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.details li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.features, .benefits {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background-color: var(--color-header);
    padding: 2rem 1rem;
    text-align: center;
}

.footer__logo {
    height: 28px;
    width: auto;
    margin: 0 auto 1rem;
}

.footer__copyright {
    font-size: 17px;
}

/* Desktop Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 2rem;
    }

    .score-section {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 2rem;
        align-items: start;
    }

    .score-card {
        top: 2rem;
    }

    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    main {
        padding: 3rem 0;
    }

    .logo.desktop {
        display: block;
    }

    .score-section {
        gap: 3rem;
    }

    .score-card.mobile {
        display: none;
    }

    .score-card.desktop h2 {
        font-size: 32px;
        font-weight: 900;
        margin: 25px 0;
    }

    .score-card.desktop {
        display: block;
    }

    .sticky.mobile {
        display: none !important;
    }

    .details {
        width: 100%;
        max-width: 850px;
    }
}
