@import url("/api/css/common.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #ffffff;
    font-weight: 600;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ef4444;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-link {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #ef4444;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1538481199705-c710c4e965fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.4s;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #dc2626;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.cta-button:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d4d4d8;
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #000000, #18181b);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #27272a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #3f3f46;
}

.feature-card:hover {
    border-color: #ef4444;
    transform: translateY(-5px);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
    background-color: #18181b;
    padding: 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #a1a1aa;
}

/* Games Section */
.games-section {
    background-color: #18181b;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.game-card {
    background-color: #27272a;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #3f3f46;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.game-image-container {
    height: 12rem;
    background-color: #3f3f46;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.game-image {
    max-height: 100%;
    object-fit: contain;
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.game-description {
    color: #a1a1aa;
}

/* Founders Section */
.founders-section {
    background-color: #000000;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.founder-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: #27272a;
    height: 24rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.founder-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.founder-role {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 0.25rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.founder-description {
    color: #d4d4d8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: #ef4444;
    font-weight: bold;
    margin-top: 0.5rem;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #b91c1c;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
    background-color: #18181b;
    border-radius: 0.5rem;
    max-width: 48rem;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.modal-content {
    color: #d4d4d8;
    line-height: 1.6;
    white-space: pre-line;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #18181b, #000000);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: #27272a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #3f3f46;
    text-align: center;
}

.contact-card:hover {
    border-color: #ef4444;
    transform: translateY(-5px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
    background-color: #18181b;
    padding: 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #a1a1aa;
}

.contact-form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-form-card {
    background-color: #27272a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #3f3f46;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d4d4d8;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #3f3f46;
    border: 1px solid #52525b;
    border-radius: 0.375rem;
    color: white;
    font-size: 1rem;
}

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

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #dc2626;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #b91c1c;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Footer Styles */
.footer {
    background-color: #18181b;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #a1a1aa;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #a1a1aa;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ef4444;
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ef4444;
}

.footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #71717a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 640px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

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

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

@media (min-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #ffffff;
    font-weight: 600;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ef4444;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ef4444;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #ef4444;
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-link {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #ef4444;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d4d4d8;
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

/* Games Slideshow Styles */
.games-section {
    background: linear-gradient(to bottom, #000000, #18181b);
    padding: 5rem 0;
    position: relative;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.game-slide.active {
    display: block;
    opacity: 1;
}

.game-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    text-align: left;
}

.game-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-description {
    font-size: 1rem;
    color: #d4d4d8;
    margin-bottom: 1rem;
    max-width: 600px;
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.game-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ef4444;
}

.stat-label {
    font-size: 0.875rem;
    color: #a1a1aa;
}

.game-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #dc2626;
    color: white;
    font-weight: bold;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.game-cta:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.slideshow-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slide-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #3f3f46;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background-color: #ef4444;
    transform: scale(1.2);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background-color: #ef4444;
}

.prev-slide {
    left: 1rem;
}

.next-slide {
    right: 1rem;
}

/* Footer Styles */
.footer {
    background-color: #18181b;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: #a1a1aa;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #a1a1aa;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ef4444;
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ef4444;
}

.footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #71717a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 640px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .game-title {
        font-size: 1.75rem;
    }

    .game-image-container {
        height: 350px;
    }

    .game-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .slide-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

.ad-banner {
background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
border: 1px solid #333;
border-radius: 12px;
margin: 2rem 0;
overflow: hidden;
position: relative;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.ad-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('https://cdn.shopify.com/s/files/1/0266/1371/9037/files/rogue-pattern-dark.png?v=1677876229');
background-size: cover;
opacity: 0.1;
z-index: 0;
}

.ad-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 1.5rem;
position: relative;
z-index: 1;
}

.ad-logo-container {
margin-bottom: 1rem;
}

.ad-logo {
height: 40px;
object-fit: contain;
}

.ad-text {
text-align: center;
margin-bottom: 1.5rem;
}

.ad-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #ffffff;
letter-spacing: 1px;
}

.ad-discount {
font-size: 1rem;
color: #d4d4d8;
}

.discount-code {
background-color: #ef4444;
color: white;
font-weight: bold;
padding: 0.25rem 0.5rem;
border-radius: 4px;
margin: 0 0.25rem;
letter-spacing: 1px;
}

.ad-cta-container {
width: 100%;
display: flex;
justify-content: center;
}

.ad-cta {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background-color: #ef4444;
color: white;
font-weight: bold;
padding: 0.75rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.875rem;
}

.ad-cta:hover {
background-color: #dc2626;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.ad-cta i {
transition: transform 0.3s ease;
}

.ad-cta:hover i {
transform: translateX(4px);
}

/* Responsive styles */
@media (min-width: 640px) {
.ad-content {
    flex-direction: row;
    padding: 1.5rem 2rem;
}

.ad-logo-container {
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.ad-text {
    flex: 1;
    text-align: left;
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.ad-cta-container {
    width: auto;
}
}
.sidebar-ad {
background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
border: 1px solid #333;
border-radius: 8px;
padding: 1.25rem;
margin-bottom: 2rem;
}

.sidebar-ad-content {
display: flex;
flex-direction: column;
}

.sidebar-ad-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}

.sidebar-ad-logo {
height: 24px;
object-fit: contain;
}

.sidebar-ad-sponsored {
font-size: 0.75rem;
color: #a1a1aa;
text-transform: uppercase;
letter-spacing: 1px;
}

.sidebar-ad-text {
font-size: 0.875rem;
color: #d4d4d8;
margin-bottom: 1rem;
}

.sidebar-ad-code {
background-color: rgba(239, 68, 68, 0.1);
border: 1px dashed #ef4444;
border-radius: 4px;
padding: 0.75rem;
margin-bottom: 1rem;
text-align: center;
}

.sidebar-ad-label {
display: block;
font-size: 0.75rem;
color: #a1a1aa;
margin-bottom: 0.25rem;
}

.sidebar-discount-code {
font-size: 1rem;
font-weight: bold;
color: #ef4444;
letter-spacing: 1px;
}

.sidebar-ad-cta {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background-color: #ef4444;
color: white;
font-weight: bold;
padding: 0.5rem;
border-radius: 4px;
font-size: 0.875rem;
transition: all 0.3s ease;
}

.sidebar-ad-cta:hover {
background-color: #dc2626;
}