/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    color: #f9fafb;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #06b6d4;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #06b6d4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.125rem;
    background: #06b6d4;
    border-radius: 0.125rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: currentColor;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    top: 0.5rem;
}

.nav-mobile {
    display: none;
    background: rgba(31, 41, 55, 0.95);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-link-mobile:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    border: 2px solid #06b6d4;
    color: #06b6d4;
    background: transparent;
}

.btn-secondary:hover {
    background: #06b6d4;
    color: #111827;
}

.btn-outline {
    border: 1px solid #6b7280;
    color: #d1d5db;
    background: transparent;
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

.btn-full {
    width: 100%;
}

.btn-flex {
    flex: 1;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: rgba(31, 41, 55, 0.5);
}

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

.stat-item {
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
}

/* New Games Styles */
.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.update-badge .icon {
    width: 1rem;
    height: 1rem;
}

.new-game {
    position: relative;
}

.new-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.free-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.update-info {
    background: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid #374151;
}

.update-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.update-content p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.update-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06b6d4;
    font-weight: 500;
}

.feature-item .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Featured Games */
.featured-games {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
}

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

.game-card {
    background: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

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

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

.game-rating-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.game-content {
    padding: 1.5rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: color 0.2s ease;
}

.game-card:hover .game-title {
    color: #06b6d4;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.game-price {
    color: #06b6d4;
    font-weight: 700;
}

.game-genre {
    color: #06b6d4;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.game-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.game-actions {
    display: flex;
    gap: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.cta-content {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #111827;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    grid-column: span 2;
}

.footer-description {
    color: #9ca3af;
    margin-top: 1rem;
    max-width: 24rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #06b6d4;
}

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

.social-link {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #06b6d4;
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

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

.footer-bottom p {
    color: #9ca3af;
}

/* Page Content */
.page-content {
    min-height: calc(100vh - 4rem);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Filters */
.filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 24rem;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: #06b6d4;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.filter-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.filter-select select {
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.filter-select select:focus {
    outline: none;
    border-color: #06b6d4;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    space-y: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #9ca3af;
}

.business-hours {
    background: #1f2937;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #374151;
    margin-top: 2rem;
}

.business-hours h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-list {
    space-y: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-form-container {
    background: #1f2937;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #374151;
}

.contact-form {
    space-y: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

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

/* Blog Page */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    background: #1f2937;
    color: #d1d5db;
    border: 1px solid #374151;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
}

.featured-post {
    margin-bottom: 4rem;
}

.featured-post-content {
    background: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-post-content:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

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

.featured-post-content:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-post-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.post-category {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.post-details {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
}

.post-details .icon {
    width: 1rem;
    height: 1rem;
}

.featured-post-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.featured-post-content:hover .featured-post-title {
    color: #06b6d4;
}

.featured-post-excerpt {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-author .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06b6d4;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.read-more-btn .icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.read-more-btn:hover .icon {
    transform: translateX(2px);
}

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

.blog-card {
    background: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.5);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.blog-details {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
}

.blog-details .icon {
    width: 0.75rem;
    height: 0.75rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.blog-card:hover .blog-title {
    color: #06b6d4;
}

.blog-excerpt {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-author {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.875rem;
}

.blog-author .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.blog-read-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #06b6d4;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.blog-read-btn:hover {
    color: #0891b2;
}

.blog-read-btn .icon {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.2s ease;
}

.blog-read-btn:hover .icon {
    transform: translateX(2px);
}

.load-more {
    text-align: center;
}

/* Privacy Page */
.privacy-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-date {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.privacy-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.privacy-icon-item {
    text-align: center;
}

.privacy-icon {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.privacy-icon-item p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.privacy-content {
    background: #1f2937;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #374151;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box {
    background: #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

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

.privacy-actions {
    text-align: center;
}

.privacy-actions-content {
    background: #1f2937;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #374151;
}

.privacy-actions h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.privacy-actions p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

/* User Feedback Section */
.user-feedback {
    padding: 4rem 0;
    background: rgba(31, 41, 55, 0.5);
}

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

.feedback-card {
    background: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feedback-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.feedback-stars .star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.feedback-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.author-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .filters {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .privacy-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-post-content {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        height: 12rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #06b6d4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0891b2;
}

/* Focus Styles for Accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Icon Styles */
.icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Utility Classes */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}