/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 50%, #1b263b 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(32, 178, 170, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(32, 178, 170, 0.3);
    box-shadow: 0 0 20px rgba(32, 178, 170, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #20b2aa;
    font-size: 1.5rem;
    text-shadow: 0 0 15px #20b2aa, 0 0 30px #20b2aa, 0 0 45px rgba(32, 178, 170, 0.5);
    letter-spacing: 2px;
    opacity: 0.9;
    animation: ghostGlow 2s ease-in-out infinite alternate;
    margin: 0;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #20b2aa;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #20b2aa, 0 0 10px rgba(32, 178, 170, 0.3);
    letter-spacing: 0.5px;
    opacity: 0.9;
    animation: ghostGlow 2s ease-in-out infinite alternate;
    margin: 0;
}

.logo-img {
    height: 85px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px #20b2aa) drop-shadow(0 0 30px rgba(32, 178, 170, 0.6)) brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    opacity: 0.95;
    animation: logoGlow 3s ease-in-out infinite alternate;
    transform: translateY(10px);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px #20b2aa) drop-shadow(0 0 40px rgba(32, 178, 170, 0.8)) brightness(1.2) contrast(1.2);
    transform: translateY(10px) scale(1.05);
    opacity: 1;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 15px #20b2aa) drop-shadow(0 0 30px rgba(32, 178, 170, 0.6)) brightness(1.1) contrast(1.1);
        opacity: 0.95;
    }
    100% {
        filter: drop-shadow(0 0 25px #20b2aa) drop-shadow(0 0 50px rgba(32, 178, 170, 0.9)) brightness(1.15) contrast(1.15);
        opacity: 1;
    }
}

@keyframes ghostGlow {
    0% {
        text-shadow: 0 0 15px #20b2aa, 0 0 30px #20b2aa, 0 0 45px rgba(32, 178, 170, 0.5);
        opacity: 0.9;
    }
    100% {
        text-shadow: 0 0 20px #20b2aa, 0 0 40px #20b2aa, 0 0 60px rgba(32, 178, 170, 0.8);
        opacity: 1;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #20b2aa;
    text-shadow: 0 0 8px #20b2aa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #20b2aa;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #20b2aa;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 50%, #1b263b 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(32, 178, 170, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(32, 178, 170, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(32, 178, 170, 0.05) 50%, transparent 70%);
    animation: ghostFloat 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes ghostFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0px); }
    50% { opacity: 0.6; transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #20b2aa, #40e0d0, #00ced1, #20b2aa);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: 3px;
    position: relative;
}



.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #20b2aa, #008b8b);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #20b2aa;
    border: 2px solid #20b2aa;
}

.btn-secondary:hover {
    background: #20b2aa;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Floating Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #20b2aa, #40e0d0);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(32, 178, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #20b2aa;
    text-shadow: 0 0 10px #20b2aa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(32, 178, 170, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.3);
    border-color: #20b2aa;
    background: rgba(32, 178, 170, 0.1);
}

.game-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.game-image {
    margin-bottom: 1.5rem;
}

.game-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #20b2aa, #40e0d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.game-image-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
}

.game-image-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.5);
}

.frogman-card {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('frogman/frog man.jpeg');
    background-size: 100%;
    background-position: 20% 30%;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.frogman-card:hover {
    transform: translateY(-5px);
}

.game-image-full {
    height: 250px;
    display: block;
}

.game-content-below {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(10px);
}

.game-content-below h3 {
    color: #20b2aa;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #20b2aa;
    font-size: 1.5rem;
}

.game-content-below p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.parking-card {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('parkingslotter/parking(1).jpeg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mouse-card {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('mousechase/mouse (1).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.game-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #20b2aa;
}

.game-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.2);
    color: #20b2aa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid #20b2aa;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #20b2aa;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #20b2aa, #40e0d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #20b2aa;
    width: 30px;
}

.contact-item h4 {
    color: #20b2aa;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #20b2aa;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #20b2aa;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #20b2aa;
    border-radius: 50%;
    color: #20b2aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #20b2aa;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: #888;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Game Detail Page Styles */
.game-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 50%, #1b263b 100%);
    position: relative;
}

.game-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.game-hero-image {
    text-align: center;
}

.hero-game-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-game-image:hover {
    transform: scale(1.05);
}

.game-hero-info {
    color: white;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #20b2aa;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #20b2aa;
}

.game-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.game-actions {
    margin-top: 2rem;
}

.game-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.game-description {
    padding: 80px 0;
    background: linear-gradient(135deg, #1b263b 0%, #0a0a0a 100%);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.description-text p {
    margin-bottom: 1.5rem;
}

.feature-list {
    text-align: left;
    margin-top: 2rem;
    color: #20b2aa;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #20b2aa;
}

.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.policy-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
}

.policy-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.policy-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    transition: all 0.3s ease;
}

.policy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.6);
}

/* Game Content Side-by-Side Layout */
.game-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.screenshots-column {
    display: flex;
    flex-direction: column;
}

.description-column {
    display: flex;
    flex-direction: column;
}

.description-column .section-title {
    margin-bottom: 30px;
    text-align: left;
}

.description-text {
    color: #e0e0e0;
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.description-text h3 {
    color: #20b2aa;
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: #20b2aa;
    padding-left: 10px;
    border-bottom-color: rgba(32, 178, 170, 0.5);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Responsive Design for Side-by-Side */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .screenshots-column {
        order: 2;
    }
    
    .description-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .game-content {
        padding: 60px 0;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .description-text p {
        font-size: 1rem;
    }
    
    .feature-list li {
        font-size: 1rem;
        padding: 10px 0;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    text-align: center;
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #20b2aa;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(32, 178, 170, 0.5);
    letter-spacing: 2px;
}

.privacy-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 0;
    font-weight: 300;
}

.privacy-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text {
    color: #e0e0e0;
    line-height: 1.8;
}

.privacy-text h2 {
    color: #20b2aa;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 700;
    border-bottom: 2px solid rgba(32, 178, 170, 0.3);
    padding-bottom: 10px;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.privacy-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    position: relative;
}

.privacy-text li::before {
    content: "•";
    color: #20b2aa;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.back-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.back-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.6);
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px 0;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-text h2 {
        font-size: 1.5rem;
    }
    
    .privacy-text p,
    .privacy-text li {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}
