* {
    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: #fff;
    background-color: #000;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

header {
    background: #000;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(254, 44, 85, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

nav ul li a:hover,
nav ul li a.active {
    color: #FE2C55;
    text-shadow: 0 0 10px rgba(254, 44, 85, 0.6);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 主内容布局 */
.main-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* 侧边栏 */
.left-sidebar,
.right-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.center-content {
    flex: 1;
}

/* 推荐内容 */
.recommendation {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.1);
    border: 1px solid #333;
}

.recommendation h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FE2C55;
    text-shadow: 0 0 3px rgba(254, 44, 85, 0.3);
}

.recommendation ul {
    list-style: none;
}

.recommendation li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
}

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

.recommendation li img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.recommendation li div {
    flex: 1;
}

.recommendation li h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
    color: #fff;
}

.recommendation li span {
    font-size: 0.8rem;
    color: #FE2C55;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
    }
    
    .left-sidebar,
    .right-sidebar {
        width: 100%;
        order: 1;
    }
    
    .center-content {
        order: 0;
    }
    
    .recommendation {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-content {
        gap: 1rem;
    }
    
    .recommendation {
        padding: 1rem;
    }
    
    .recommendation li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .recommendation li img {
        width: 100%;
        height: 100px;
    }
}

/* 轮播图 */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(254, 44, 85, 0.2);
    border: 1px solid #333;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 10px rgba(254, 44, 85, 0.6);
    color: #FE2C55;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FE2C55;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(254, 44, 85, 0.6);
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(254, 44, 85, 0.3);
    border-bottom: 2px solid #333;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(254, 44, 85, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #f0f8ff;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(254, 44, 85, 0.8);
    }
    to {
        text-shadow: 0 0 20px rgba(254, 44, 85, 1), 0 0 30px rgba(254, 44, 85, 0.8);
    }
}

/* 游戏分类 */
.game-categories {
    margin-bottom: 4rem;
}

.game-categories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FE2C55;
    text-shadow: 0 0 5px rgba(254, 44, 85, 0.5);
}

.categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.category {
    background: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #fff;
    border: 2px solid #333;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.category:hover,
.category.active {
    background: #FE2C55;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 44, 85, 0.4);
    color: white;
    border: 2px solid #FE2C55;
}

/* 精选游戏 */
.featured-games {
    margin-bottom: 4rem;
}

.featured-games h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FE2C55;
    text-shadow: 0 0 5px rgba(254, 44, 85, 0.5);
}

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

.game-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.2);
    border-color: #FE2C55;
}

.game-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-card h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #FE2C55;
    text-shadow: 0 0 3px rgba(254, 44, 85, 0.3);
}

.game-card p {
    margin: 0 1rem 1rem;
    color: #ccc;
}

.game-info {
    display: flex;
    gap: 1rem;
    margin: 0 1rem 1rem;
}

.game-type {
    background: #FE2C55;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    border: 1px solid #FE2C55;
}

.game-difficulty {
    background: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    border: 1px solid #FFD700;
}

.game-description {
    background: #2a2a2a;
    padding: 1rem;
    margin: 0 1rem 1rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.game-description h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #FE2C55;
}

.game-description p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.play-button {
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    color: white;
    border: none;
    padding: 1rem;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 4px 10px rgba(254, 44, 85, 0.3);
}

.play-button:hover {
    background: linear-gradient(135deg, #FF416C 0%, #FE2C55 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(254, 44, 85, 0.4);
}

.play-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: auto;
    border-radius: 10px;
}

/* 游戏统计信息 */
.game-stats {
    display: flex;
    justify-content: space-between;
    margin: 0 1rem 1rem;
    padding: 0.8rem;
    background: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #333;
}

.game-stats.small {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    margin: 0;
}

.game-hotness {
    color: #FE2C55;
    font-weight: 600;
}

.game-rank {
    color: #FFD700;
    font-weight: 600;
}

/* 最近更新 */
.recent-games {
    margin-bottom: 4rem;
}

.recent-games h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FE2C55;
    text-shadow: 0 0 5px rgba(254, 44, 85, 0.5);
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-item {
    display: flex;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.game-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(254, 44, 85, 0.2);
    border-color: #FE2C55;
}

.game-item-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 13px 0 0 13px;
}

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

.game-item-info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-item-info h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: #FE2C55;
    text-shadow: 0 0 3px rgba(254, 44, 85, 0.3);
}

.game-item-info p {
    margin: 0 0 1rem 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* 联系信息 */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid #333;
}

.contact-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* 表单样式 */
.contact-form {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 2rem 0;
    border: 1px solid #333;
}

.contact-form h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 10px;
    font-size: 1rem;
    color: #fff;
    transition: border-color 0.3s ease;
}

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

/* 按钮样式 */
button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

button:active {
    transform: translateY(0);
}

/* 用户资料 */
.user-profile {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 2rem 0;
    border: 1px solid #333;
}

.user-profile h1 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.user-profile h2 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.user-info {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.user-info p {
    margin: 0.5rem 0;
    color: #ddd;
}

.user-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.user-actions button {
    flex: 1;
}

/* 错误页面 */
.error-container {
    text-align: center;
    padding: 4rem 2rem;
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

/* 新闻详情模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.95);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #222;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 30px rgba(254, 44, 85, 0.3);
    position: relative;
}

.modal-content .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
}

#newsContent h2 {
    color: #FE2C55;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 5px rgba(254, 44, 85, 0.3);
}

.news-date {
    color: #ccc;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.news-body {
    color: #fff;
    line-height: 1.8;
}

.news-body h3 {
    color: #FE2C55;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.news-body p {
    margin-bottom: 15px;
}

.news-body ul,
.news-body ol {
    margin: 15px 0 15px 20px;
}

.news-body li {
    margin-bottom: 8px;
}

.news-body strong {
    color: #FE2C55;
}

.error-container h1 {
    font-size: 6rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.error-container h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.error-container p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* 关于页面 */
.about-content {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin: 2rem 0;
    border: 1px solid #333;
}

.about-content h2 {
    color: #ff6b6b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    margin-left: 1rem;
}

.about-content li {
    margin-bottom: 0.5rem;
    color: #ddd;
    position: relative;
}

.about-content li:before {
    content: "▶";
    color: #ff6b6b;
    position: absolute;
    left: -1rem;
}

/* 页脚 */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid #333;
    border-radius: 30px 30px 0 0;
}

footer p {
    margin: 0.5rem 0;
    font-weight: 500;
}

footer p:last-child {
    color: #FE2C55;
    font-weight: 600;
}

/* 客服功能 */
#supportButton {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

#supportButton:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(254, 44, 85, 0.6);
}

#supportButton .support-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatWindow {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    max-height: 500px;
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 1rem;
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.message {
    max-width: 85%;
    display: flex;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.support-message {
    align-self: flex-start;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.user-message .message-content {
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.support-message .message-content {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #333;
    border-bottom-left-radius: 5px;
}

.message-content p {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.support-message .message-time {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    font-size: 0.85rem !important;
    opacity: 0.9;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: 0.5rem;
}

#messageInput {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #333;
    border: 1px solid #444;
    border-radius: 20px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#messageInput:focus {
    border-color: #FE2C55;
}

.send-btn {
    background: linear-gradient(135deg, #FE2C55 0%, #FF416C 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    #chatWindow {
        width: calc(100% - 4rem);
        right: 2rem;
        left: 2rem;
    }
    
    #supportButton {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    #supportButton .support-icon {
        width: 30px;
        height: 30px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-item {
        flex-direction: column;
    }
    
    .game-item-image {
        width: 100%;
        height: 200px;
    }
    
    .user-actions {
        flex-direction: column;
    }
    
    .error-container h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .game-categories h2,
    .featured-games h2,
    .recent-games h2 {
        font-size: 2rem;
    }
    
    .contact-item,
    .contact-form,
    .user-profile,
    .about-content {
        padding: 1.5rem;
    }
    
    button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}