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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0097a7, #00bcd4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #00bcd4;
    text-decoration: none;
    padding: 15px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #00bcd4;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: #00bcd4;
    color: #ffffff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #00bcd4;
    color: white;
}

.btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.btn-accept:hover {
    background: #0097a7;
}

.btn-decline:hover {
    background: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    color: #00bcd4;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .btn-primary {
    margin-left: auto;
    margin-bottom: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: right;
}

.hero-description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #cccccc;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
}



.buttons {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

.button-circle {
    width: 25px;
    height: 25px;
    background: #333;
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #cccccc;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
}



.game-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
}

.element-1 {
    width: 20px;
    height: 20px;
    background: #ffeb3b;
    top: 20px;
    right: 30px;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    width: 15px;
    height: 15px;
    background: #ff5722;
    bottom: 80px;
    right: 10px;
    animation: float 4s ease-in-out infinite;
}

.element-3 {
    width: 25px;
    height: 25px;
    background: #4caf50;
    top: 80px;
    left: 10px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: #cccccc;
    line-height: 1.8;
}

/* Why Flipzoria Section */
.why-flipzoria {
    padding: 80px 0;
    background: #0a0a0a;
}

.why-flipzoria .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.section-title-large {
    font-size: 48px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    max-width: 400px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.feature-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    color: #00bcd4;
    line-height: 1;
    min-width: 60px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
   
}

.feature-description {
    font-size: 15px;
    line-height: 1.4;
    color: #cccccc;
    margin: 0;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #111111;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.div1 {
    grid-row: span 2 / span 2;
}

.div2 {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 3;
}

.div3 {
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 5;
}

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 6 / span 6;
    grid-column-start: 2;
    grid-row-start: 1;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 1;
    aspect-ratio: 367 / 266;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 4;
    aspect-ratio: 367 / 266;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    object-fit: cover;
}

.game-1 {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
}

.game-2 {
    background: linear-gradient(135deg, #424242, #616161);
}

.game-3 {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.game-character {
    width: 60px;
    height: 80px;
    background: #fff3e0;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}



.games-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
}

.gaming-devices {
    position: relative;
    width: 300px;
    height: 250px;
}



.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffeb3b;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 100px;
    left: 20px;
    animation-delay: 0.7s;
}

.star:nth-child(3) {
    bottom: 20px;
    right: 60px;
    animation-delay: 1.4s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00bcd4;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    max-width: 40px;
    width: 100%;
}

.social-link img {
    width: 100%;
}

.social-link:hover {
    color: #00bcd4;
}

/* Games Page Styles */
.hero-games {
    padding: 120px 0 0;
    text-align: center;
 
}

.hero-games .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-games .hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-games .hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Games Gallery */
.games-gallery {
    padding: 60px 0;
    background: #0a0a0a;
}

.games-flex {
    display: flex;
   
    gap: 30px;
    justify-content: space-between;
}

.games-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 150px;
}

.games-center {
    width: 100%;
    max-width: 500px;
}

.games-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 240px;
}

.game-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
}

.game-card.small {
    width: 120px;
    height: 120px;
}

.game-card.medium {
    width: 200px;
    height: 140px;
}

.game-card.large {
    width: 100%;
    height: 300px;
}

.game-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Game Character */
.game-character {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
}

.character-head {
    width: 40px;
    height: 50px;
    background: #fff3e0;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.character-head::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    box-shadow: 10px 0 #333;
}

.character-head::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: #333;
    border-radius: 50%;
}

.character-body {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #ff9800;
    border-radius: 15px 15px 5px 5px;
}

/* Game Warrior */
.game-warrior {
    background: linear-gradient(135deg, #424242, #616161);
}

.warrior-helmet {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50% 50% 0 0;
    position: relative;
}

.warrior-helmet::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: #666;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.warrior-weapon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 4px;
    background: #888;
    border-radius: 2px;
    transform: rotate(45deg);
}

.warrior-weapon::before {
    content: '';
    position: absolute;
    right: -8px;
    top: -6px;
    width: 15px;
    height: 15px;
    background: #aaa;
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 50% 100%);
}

/* Game Adventure */
.game-adventure {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.adventure-characters {
    display: flex;
    gap: 5px;
    align-items: center;
}

.char {
    width: 20px;
    height: 25px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.char-1 {
    background: #ff5722;
}

.char-2 {
    background: #2196f3;
}

.char-3 {
    background: #ffeb3b;
}

/* Featured Game - Wooden Blocks */
.game-featured {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    padding: 30px;
}

.wooden-blocks {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block {
    position: absolute;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.block-orange {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    left: 50px;
    top: 50px;
    transform: rotate(-15deg);
}

.block-red {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    right: 80px;
    top: 30px;
    transform: rotate(20deg);
}

.block-green {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    left: 120px;
    bottom: 40px;
    transform: rotate(-8deg);
}

.screw {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #8b4513;
    border-radius: 50%;
    border: 2px solid #654321;
}

.screw::before {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #654321;
    font-size: 8px;
    font-weight: bold;
}

.screw-1 { top: 15px; left: 15px; }
.screw-2 { top: 15px; right: 15px; }
.screw-3 { top: 20px; left: 20px; }
.screw-4 { bottom: 20px; right: 20px; }
.screw-5 { top: 10px; left: 20px; }
.screw-6 { bottom: 10px; right: 20px; }

/* Racing Game */
.game-racing {
    background: linear-gradient(135deg, #795548, #5d4037);
    overflow: hidden;
}

.racing-car {
    width: 60px;
    height: 30px;
    background: #ffeb3b;
    border-radius: 15px 15px 5px 5px;
    position: relative;
    z-index: 2;
    animation: carMove 3s ease-in-out infinite;
}

.racing-car::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15px;
    width: 30px;
    height: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px 8px 0 0;
}

.racing-car::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    box-shadow: 32px 0 #333;
}

.racing-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #333;
    z-index: 1;
}

.racing-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: #fff;
    box-shadow: 40px 0 #fff, 80px 0 #fff, 120px 0 #fff, 160px 0 #fff;
    animation: roadMove 2s linear infinite;
}

@keyframes carMove {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

@keyframes roadMove {
    0% { transform: translateY(-50%) translateX(0px); }
    100% { transform: translateY(-50%) translateX(-20px); }
}

/* Action Game */
.game-action {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    overflow: hidden;
}

.action-character {
    width: 50px;
    height: 70px;
    background: #000;
    position: relative;
    z-index: 2;
    clip-path: polygon(50% 0%, 30% 35%, 0% 35%, 15% 65%, 0% 100%, 50% 80%, 100% 100%, 85% 65%, 100% 35%, 70% 35%);
}

.action-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    z-index: 1;
    animation: actionFlash 2s ease-in-out infinite;
}

@keyframes actionFlash {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Unleash Your Inner Gamer Section */
.unleash-gamer {
    padding: 80px 0;
    background: #111111;
}

.unleash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.unleash-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.unleash-image img {
    width: 100%;
}






.symbol {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
    animation: symbolFloat 3s ease-in-out infinite;
}

.symbol-plus-1 {
    color: #ffeb3b;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.symbol-plus-2 {
    color: #4caf50;
    bottom: 30px;
    right: 20px;
    animation-delay: 1s;
}

.symbol-x {
    color: #ff5722;
    top: 60px;
    right: 60px;
    animation-delay: 2s;
}

@keyframes symbolFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

.unleash-text .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #cccccc;
}

.game-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-item {
    border-left: 3px solid #00bcd4;
    padding-left: 20px;
}

.category-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.category-description {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.bottom-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.bottom-section {
    color: #cccccc;
}

.bottom-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.bottom-text {
    font-size: 15px;
    line-height: 1.7;
}

.nav-link.active {
    color: #00bcd4;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hero .btn-primary {
        margin: 0 auto 40px;
    }

.hero-text {
    max-width: 550px;
}
    
    .why-flipzoria .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title-large {
        font-size: 40px;
        text-align: center;
        max-width: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .div1 {
    grid-column: span 2 / span 2;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
}

.div4 {
    grid-column: span 6 / span 6;
    grid-row: span 3 / span 3;
    grid-row-start: 2;
}

.div5 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-row-start: 5;
}

.div6 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 5;
}
    
    .games-left,
    .games-right {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .games-center {
        order: -1;
        max-width: 600px;
    }
    
    .unleash-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .bottom-sections {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
   
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-games {
        padding: 140px 0 60px;
    }
    
    .hero-title,
    .hero-games .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title-large {
        font-size: 32px;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .feature-number {
        font-size: 60px;
        align-self: center;
    }
    
    .games-left,
    .games-right {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    
    .game-card.medium {
        width: 280px;
        height: 160px;
    }
    
    .game-card.large {
        height: 250px;
    }
    
    .gaming-devices {
        width: 280px;
        height: 220px;
    }
    
    .controller-purple {
        width: 120px;
        height: 75px;
    }
    
    .vr-headset {
        width: 80px;
        height: 50px;
    }
    
    .handheld-device {
        width: 65px;
        height: 40px;
    }
    
    .symbol {
        font-size: 20px;
    }
    
    .unleash-content {
        gap: 40px;
    }
    
    .unleash-text .section-title {
        font-size: 30px;
    }
    
     .div1 {
    grid-column: span 2 / span 2;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-column-start: 5;
}

.div4 {
    grid-column: span 6 / span 6;
    grid-row: span 3 / span 3;
    grid-row-start: 2;
}

.div5 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-row-start: 5;
}

.div6 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 5;
}
    
    .about-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-contact {
        order: 1;
    }
    
    .copyright {
        order: 2;
    }
    
    .social-links {
        order: 3;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-controller {
        width: 250px;
        height: 160px;
    }
    
    .gaming-setup {
        width: 200px;
        height: 200px;
    }
    
    .gaming-devices {
        width: 250px;
        height: 200px;
    }
}

@media (max-width: 580px) {
    .hero-title,
    .hero-games .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .unleash-text .section-title {
        font-size: 26px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .feature-number {
        font-size: 48px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .features-grid {
        gap: 40px;
    }

    .games-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card.small {
        width: 100px;
        height: 100px;
    }
    
    .game-card.medium {
        width: 250px;
        height: 140px;
    }
    
    .game-card.large {
        height: 200px;
    }
    
    .games-left,
    .games-right {
        gap: 15px;
    }
    
    .wooden-blocks {
        padding: 15px;
    }
    
    .block-orange {
        width: 80px;
        height: 50px;
        left: 30px;
        top: 30px;
    }
    
    .block-red {
        width: 50px;
        height: 80px;
        right: 50px;
        top: 20px;
    }
    
    .block-green {
        width: 70px;
        height: 40px;
        left: 80px;
        bottom: 25px;
    }
    
    .gaming-devices {
        width: 220px;
        height: 180px;
    }
    
    .controller-purple {
        width: 100px;
        height: 60px;
    }
    
    .vr-headset {
        width: 70px;
        height: 40px;
        top: 25px;
        right: 30px;
    }
    
    .handheld-device {
        width: 55px;
        height: 35px;
        bottom: 30px;
        left: 25px;
    }
    
    .symbol {
        font-size: 18px;
    }
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary {
    
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0097a7, #00bcd4);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #00bcd4;
    color: white;
}

.btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.btn-accept:hover {
    background: #0097a7;
}

.btn-decline:hover {
    background: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 24px;
    color: #00bcd4;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00bcd4;
}



/* Games Gallery Section */
.games-gallery {
    padding: 60px 0;
    background: #0a0a0a;
}

.games-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.games-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 120px;
}

.games-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: start;
}

.games-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 200px;
}

.game-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-item.small {
    width: 120px;
    height: 120px;
}

.game-item.medium {
    width: 200px;
    height: 140px;
}

.game-item.large {
    width: 400px;
    height: 300px;
}

.game-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Game 1 - Character */
.game-1 {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
}

.game-character {
    width: 40px;
    height: 50px;
    background: #fff3e0;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.game-character::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
}

/* Game 2 - Warrior */
.game-2 {
    background: linear-gradient(135deg, #424242, #616161);
}

.game-warrior {
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    position: relative;
}

.game-warrior::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 25px;
    background: #666;
    border-radius: 3px;
}

/* Game 3 - Adventure */
.game-3 {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.game-adventure {
    width: 40px;
    height: 40px;
    background: #ff5722;
    border-radius: 50%;
    position: relative;
}

.game-adventure::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #ffeb3b;
    border-radius: 50%;
}

/* Featured Game - Blocks */
.game-featured {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    padding: 20px;
}

.game-blocks {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block {
    position: absolute;
    border-radius: 8px;
}

.block-1 {
    width: 80px;
    height: 120px;
    background: #ff6f00;
    transform: rotate(-15deg);
    left: 50px;
    top: 50%;
    transform-origin: center;
    transform: translateY(-50%) rotate(-15deg);
}

.block-2 {
    width: 100px;
    height: 80px;
    background: #d32f2f;
    transform: rotate(10deg);
    right: 80px;
    top: 60px;
}

.block-3 {
    width: 60px;
    height: 100px;
    background: #388e3c;
    transform: rotate(-5deg);
    left: 160px;
    bottom: 60px;
}

.screws {
    position: absolute;
    width: 100%;
    height: 100%;
}

.screw {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.screw:nth-child(1) { top: 20px; left: 20px; }
.screw:nth-child(2) { top: 20px; right: 20px; }
.screw:nth-child(3) { bottom: 20px; left: 20px; }
.screw:nth-child(4) { bottom: 20px; right: 20px; }

.screw::before {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 8px;
}




@keyframes actionGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Unleash Section */
.unleash-section {
    padding: 80px 0;
    background: #111111;
}

.unleash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #cccccc;
}

.unleash-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gaming-setup-purple {
    position: relative;
    width: 300px;
    height: 250px;
}

.controller-main {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.4);
}






.gaming-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

.element-plus-1 {
    color: #ffeb3b;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.element-plus-1::before {
    content: '+';
}

.element-plus-2 {
    color: #4caf50;
    bottom: 30px;
    right: 20px;
    animation-delay: 1s;
}

.element-plus-2::before {
    content: '+';
}

.element-x {
    color: #ff5722;
    top: 50px;
    right: 50px;
    animation-delay: 2s;
}

.element-x::before {
    content: '×';
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.game-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
}

.category-description {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.content-section {
    color: #cccccc;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Bebas Neue', cursive;
}

.section-text {
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00bcd4;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00bcd4;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .container {
        padding: 0 15px;
    }
    
    .unleash-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .games-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-sidebar {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        order: 2;
    }
    
    .games-main {
        grid-template-columns: 1fr;
        justify-items: center;
        order: 1;
    }
    
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(12, 1fr);
    max-width: 500px;
    margin: 0 auto;
    }
    
    .game-item.large {
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
    
    .bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
      .div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
}

.div4 {
    grid-column: span 6 / span 6;
    grid-row: span 6 / span 6;
    grid-row-start: 3;
}

.div5 {
    grid-column: span 3 / span 3;
    grid-row: span 4 / span 4;
    grid-row-start: 9;
}

.div6 {
    grid-column: span 3 / span 3;
    grid-row: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 9;
}
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .games-sidebar {
        flex-direction: column;
        align-items: center;
    }
    
    .games-right {
        flex-direction: column;
        align-items: center;
    }
    
    .game-item.medium {
        width: 280px;
        height: 160px;
    }
    
    .gaming-setup-purple {
        width: 250px;
        height: 200px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .footer-contact {
        order: 1;
    }
    
    .copyright {
        order: 2;
    }
    
    .social-links {
        order: 3;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
      
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
.games-gallery {
    padding: 0;
}

    .section-title {
        font-size: 26px;
    }
    
    .game-item.small {
        width: 100px;
        height: 100px;
    }
    
    .game-item.medium {
        width: 250px;
        height: 140px;
    }
    
    .game-item.large {
        height: 250px;
    }
    
    .games-sidebar {
        gap: 15px;
    }
    
    .games-right {
        gap: 15px;
    }
}

.page-image {
    max-width: 500px;
    width: 100%;
    margin-top: 30px;
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                