/* Base Styles */
:root {
    --primary-color: #0066ff;
    --secondary-color: #001a33;
    --accent-color: #00ccff;
    --warning-color: #ff3300;
    --dark-color: #000814;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #ff5533;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 51, 0, 0.2);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    max-width: 100%;
    display: block;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 60px;
    max-width: 100%;
    display: block;
    margin-left: 10px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

nav a {
    color: var(--secondary-color);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    align-items: center;
}


.marketplace-logos {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    position: relative;
}

.logo-item img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.logo-item i {
    margin-left: 10px;
    color: var(--accent-color);
}

/* Logo Section */
.logo-section {
    background-color: var(--light-color);
    text-align: center;
    padding: 40px 0 10px 0;
}

.centered-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    text-align: center;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

/* Feature Card Styles for Creators Section */
.feature-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.creators-summary {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto 4rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.6;
}

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-visualization {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}


/* Testimonials Section */
.testimonials-section {
    background-color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: left;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Warning Section */
.warning-section {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.warning-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.warning-content {
    flex: 1;
}

.warning-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--warning-color);
}

.warning-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* For Creators Section */
.creators-section {
    background-color: var(--light-color);
    text-align: center;
}

.creators-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.responsibility-message {
    font-size: 1.1rem;
    max-width: 992px;
    margin: 0 auto 3rem;
    padding: 15px 20px;
    background-color: rgba(0, 102, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-align: left;
    color: var(--secondary-color);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.early-access {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 992px;
    margin: 0 auto;
}

.early-access h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.signup-form {
    display: flex;
    gap: 10px;
}

.signup-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column h3 span {
    color: var(--accent-color);
}

.footer-logo img {
    height: 40px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container,
    .warning-section .container {
        flex-direction: column;
    }

    .hero-section {
        padding: 140px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    nav ul {
        gap: 15px;
    }

    .btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }


    .marketplace-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    nav.active ul {
        transform: translateY(0);
    }

    .header-logo {
        height: 53px;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Subscription Tiers Section */
.subscription-section {
    background-color: var(--light-color);
    text-align: center;
    padding: 20px 0;
}

.subscription-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.subscription-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.subscription-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.subscription-item.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    transform: scale(1.03);
}

.subscription-item.featured:hover {
    transform: translateY(-5px) scale(1.03);
}

.subscription-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.tier-type {
    display: inline-block;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-description {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.subscription-item .btn {
    margin-top: auto;
}

.payment-info {
    text-align: center;
    margin-top: 30px;
    color: var(--gray-color);
}

.payment-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.payment-info .small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.stripe-logo {
    height: 20px;
    vertical-align: middle;
}

/* Anti-Theft Warning Section */
.anti-theft-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.anti-theft-content {
    max-width: 992px;
    margin: 0 auto;
}

.anti-theft-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--warning-color);
}

.anti-theft-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.anti-theft-section ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.anti-theft-section li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Legal Pages Styles */
.legal-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 120px 0 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1rem;
    opacity: 0.8;
}

.legal-content {
    background-color: white;
    padding: 60px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 0;
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.testimonial-item,
.benefit-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.feature-item:nth-child(2),
.testimonial-item:nth-child(2),
.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3),
.testimonial-item:nth-child(3),
.benefit-item:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(4),
.benefit-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 10vh auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
}

.close-modal:hover {
    color: var(--secondary-color);
}

/* File Upload Styles */
.upload-form {
    margin-top: 20px;
}

.file-drop-zone {
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 255, 0.05);
    transition: var(--transition);
}

.file-drop-zone.drag-over {
    background-color: rgba(0, 102, 255, 0.1);
    border-color: var(--accent-color);
}

.file-input {
    display: none;
}

.file-drop-zone label {
    cursor: pointer;
    display: block;
}

.file-drop-zone i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-drop-zone span {
    display: block;
    color: var(--secondary-color);
}

/* Progress Bar Styles */
.upload-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    color: var(--secondary-color);
}

/* Check Results Styles */
.check-results {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
}

.result-content {
    color: var(--secondary-color);
}

.result-content.found {
    border-left: 3px solid var(--warning-color);
    padding-left: 15px;
}

.result-content.not-found {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

/* Cookie Consent Custom Styles */
:root {
    --cc-bg: #1a1a1a;
    --cc-text: #ffffff;
    --cc-btn-primary-bg: #ff6b35;
    --cc-btn-primary-text: #ffffff;
    --cc-btn-primary-hover-bg: #e55530;
    --cc-btn-secondary-bg: transparent;
    --cc-btn-secondary-text: #ffffff;
    --cc-btn-secondary-border: #ffffff;
    --cc-btn-secondary-hover-bg: #ffffff;
    --cc-btn-secondary-hover-text: #1a1a1a;
}

/* Cookie consent modal styling */
#cc--main .cm {
    background: var(--cc-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

#cc--main .cm__body {
    color: var(--cc-text) !important;
}

#cc--main .cm__title {
    color: var(--cc-text) !important;
    font-weight: 600 !important;
}

#cc--main .cm__desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Button styling */
#cc--main .btn {
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

#cc--main .btn--primary {
    background: var(--cc-btn-primary-bg) !important;
    color: var(--cc-btn-primary-text) !important;
    border: none !important;
}

#cc--main .btn--primary:hover {
    background: var(--cc-btn-primary-hover-bg) !important;
    transform: translateY(-1px) !important;
}

#cc--main .btn--secondary {
    background: var(--cc-btn-secondary-bg) !important;
    color: var(--cc-btn-secondary-text) !important;
    border: 1px solid var(--cc-btn-secondary-border) !important;
}

#cc--main .btn--secondary:hover {
    background: var(--cc-btn-secondary-hover-bg) !important;
    color: var(--cc-btn-secondary-hover-text) !important;
}

/* Preferences modal styling */
#cc--main .pm {
    background: var(--cc-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
}

#cc--main .pm__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#cc--main .pm__title {
    color: var(--cc-text) !important;
}

#cc--main .pm__section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

#cc--main .pm__section-title {
    color: var(--cc-text) !important;
}

#cc--main .pm__section-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Toggle switch styling */
#cc--main .toggle {
    background: rgba(255, 255, 255, 0.2) !important;
}

#cc--main .toggle--on {
    background: var(--cc-btn-primary-bg) !important;
}

#cc--main .toggle__ball {
    background: #ffffff !important;
}

/* Footer links styling */
#cc--main .cm__footer a {
    color: var(--cc-btn-primary-bg) !important;
    text-decoration: none !important;
}

#cc--main .cm__footer a:hover {
    text-decoration: underline !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #cc--main .cm {
        margin: 10px !important;
        border-radius: 8px !important;
    }
    
    #cc--main .pm {
        margin: 10px !important;
        border-radius: 8px !important;
    }
}
