/* 澳门娱乐城 - 全新设计风格 2026 */
/* 独特配色：深紫金主题 */

:root {
    --primary-gold: #D4AF37;
    --primary-purple: #4A0E4E;
    --secondary-purple: #7B2D8E;
    --dark-bg: #1A0A1F;
    --light-gold: #F5E6B8;
    --accent-red: #C41E3A;
    --text-light: #FAFAFA;
    --text-muted: #B8A8C0;
    --card-bg: rgba(74, 14, 78, 0.6);
    --border-gold: rgba(212, 175, 55, 0.3);
    --gradient-main: linear-gradient(135deg, #4A0E4E 0%, #1A0A1F 50%, #2D1B36 100%);
    --gradient-gold: linear-gradient(90deg, #D4AF37, #F5E6B8, #D4AF37);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --shadow-purple: 0 8px 32px rgba(74, 14, 78, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
    background: var(--gradient-main);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 容器布局 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

/* 头部导航 - 非sticky */
.site-header {
    background: linear-gradient(180deg, rgba(26, 10, 31, 0.98) 0%, rgba(74, 14, 78, 0.95) 100%);
    border-bottom: 2px solid var(--primary-gold);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 主导航 */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-list li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-list li a:hover,
.nav-list li a.active {
    background: var(--card-bg);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* CTA按钮 */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* 移动端菜单 */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero区域 */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 10, 31, 0.9) 0%, rgba(74, 14, 78, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-red);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    background: rgba(26, 10, 31, 0.8);
    border-bottom: 1px solid var(--border-gold);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: var(--primary-gold);
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--primary-gold);
}

.breadcrumb-list .current {
    color: var(--primary-gold);
}

/* 内容区块 */
.section {
    padding: 70px 0;
}

.section-alt {
    background: rgba(45, 27, 54, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px auto 0;
}

/* 游戏卡片网格 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.game-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    background: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 15px;
}

.game-card-body {
    padding: 20px;
}

.game-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-gold);
}

.game-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-gold);
}

.game-rtp {
    font-size: 0.85rem;
    color: var(--primary-gold);
}

.game-play-btn {
    padding: 8px 18px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.game-play-btn:hover {
    box-shadow: var(--shadow-gold);
}

/* 特色区块 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--light-gold);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 内容文章区 */
.content-article {
    max-width: 900px;
    margin: 0 auto;
}

.content-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--light-gold);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gold);
}

.content-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary-gold);
}

.content-article p {
    margin-bottom: 18px;
    text-align: justify;
    color: var(--text-light);
}

.content-article ul,
.content-article ol {
    margin: 15px 0 20px 25px;
}

.content-article li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.content-article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: var(--shadow-purple);
}

/* 信息卡片 */
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gold);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 12px;
    font-size: 1.5rem;
}

.info-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-gold);
}

/* FAQ区块 */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--light-gold);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* 评论区块 */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--primary-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.review-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 3px;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* 支付方式 */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.payment-item {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s;
}

.payment-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.payment-item img {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.payment-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 作者信息 */
.author-box {
    display: flex;
    gap: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 标签页面 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag-item {
    display: inline-block;
    padding: 12px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tag-item:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.tag-item.large {
    font-size: 1.1rem;
    padding: 15px 30px;
}

.tag-item.medium {
    font-size: 1rem;
}

/* 页脚 */
.site-footer {
    background: linear-gradient(180deg, rgba(26, 10, 31, 0.95) 0%, #0D050F 100%);
    border-top: 2px solid var(--primary-gold);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-copyright a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .nav-list {
        gap: 5px;
    }
    
    .nav-list li a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-list li a {
        display: block;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-btn,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-item {
        width: 100%;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* 工具类 */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* 表格样式 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

.data-table th {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    font-weight: 600;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* 负责任博彩 */
.responsible-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(74, 14, 78, 0.3));
    border: 1px solid var(--accent-red);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.responsible-section h3 {
    color: var(--accent-red);
    margin-bottom: 15px;
}

.responsible-section p {
    color: var(--text-muted);
}

.responsible-section a {
    color: var(--primary-gold);
}

/* APP下载页面 */
.app-download-section {
    text-align: center;
    padding: 50px 20px;
}

.app-preview {
    max-width: 300px;
    margin: 30px auto;
}

.app-preview img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--card-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.download-btn-icon {
    font-size: 1.8rem;
}

.download-btn-text {
    text-align: left;
}

.download-btn-text small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-btn-text strong {
    font-size: 1.1rem;
}

/* 牌照区域 */
.license-section {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.license-badge img {
    height: 80px;
    width: auto;
}

.license-info h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.license-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
