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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: white;
    overflow-x: hidden;
    border: 0px;
    color: #383838;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 28px;
    height: 100%;
}

a, a:active, a:visited, a:hover, a:focus {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    color: #383838;
}

a:hover {
    color: #fdd000;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #383838;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-logo span {
    color: #fdd000;
    font-size: 0.9rem;
    display: block;
    margin-top: -8px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #383838;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fdd000;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #fdd000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #383838;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b1020 0%, #1b3566 50%, #0ea5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gamePattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="8" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.07"/><polygon points="15,15 35,15 25,35" fill="%2300e5ff" opacity="0.08"/><rect x="5" y="35" width="8" height="8" fill="%23ffffff" opacity="0.06"/><circle cx="40" cy="10" r="3" fill="%23fdd000" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23gamePattern)"/></svg>') repeat;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 208, 0, 0.1) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Game Icons Floating Animation */
.hero .floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hero .floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero .floating-icon:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.hero .floating-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.hero .floating-icon:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.hero .floating-icon:nth-child(5) {
    top: 15%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg) scale(1.1);
        opacity: 0.2;
    }
}

/* Game Elements Styles */
.game-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.game-element {
    position: absolute;
    font-size: 1.5rem;
    z-index: 1;
    opacity: 0.7;
}

.gem-1 {
    top: 15%;
    left: 10%;
    color: #e74c3c;
    animation: gameSparkle 4s ease-in-out infinite;
    animation-delay: 0s;
}

.star-1 {
    top: 25%;
    right: 15%;
    color: #f1c40f;
    animation: gameFloatUp 5s ease-in-out infinite;
    animation-delay: 1s;
}

.star-2 {
    top: 60%;
    left: 8%;
    color: #ffffff;
    animation: gameRotateFloat 8s linear infinite;
    animation-delay: 2.5s;
}

.coin-1 {
    top: 35%;
    right: 8%;
    color: #f39c12;
    animation: gameSparkle 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.crown-1 {
    top: 70%;
    right: 12%;
    color: #fdd000;
    animation: gameFloatSide 6s ease-in-out infinite;
    animation-delay: 3s;
}

.heart-1 {
    top: 45%;
    left: 5%;
    color: #e91e63;
    animation: gameSparkle 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shield-1 {
    top: 80%;
    left: 15%;
    color: #3498db;
    animation: gameFloatUp 7s ease-in-out infinite;
    animation-delay: 2s;
}

.wand-1 {
    top: 20%;
    left: 20%;
    color: #9b59b6;
    animation: gameRotateFloat 6s linear infinite;
    animation-delay: 4s;
}

.dice-1 {
    top: 55%;
    right: 20%;
    color: #ffffff;
    animation: gameFloatSide 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.rocket-1 {
    top: 65%;
    left: 25%;
    color: #e67e22;
    animation: gameFloatUp 5.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

/* Pixel Elements */
.pixel-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.pixel-block {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    animation: pixelDance 8s ease-in-out infinite;
    opacity: 0.6;
}

.pixel-1 {
    top: 30%;
    left: 5%;
    background: #ff6b9d;
    animation-delay: 0s;
}

.pixel-2 {
    top: 50%;
    right: 10%;
    background: #4ecdc4;
    animation-delay: 1.5s;
}

.pixel-3 {
    top: 75%;
    left: 30%;
    background: #ffe66d;
    animation-delay: 3s;
}

.pixel-4 {
    top: 40%;
    right: 25%;
    background: #a8e6cf;
    animation-delay: 2s;
}

.pixel-5 {
    top: 85%;
    right: 5%;
    background: #ff8b94;
    animation-delay: 4s;
}

.pixel-6 {
    top: 10%;
    left: 35%;
    background: #b4a7d6;
    animation-delay: 2.5s;
}

/* Enhanced Floating Icons with Individual Classes */
.floating-icon.float-1 {
    color: #ff6b6b !important;
    animation: gameFloatUp 5s ease-in-out infinite !important;
    animation-delay: 0s !important;
}

.floating-icon.float-2 {
    color: #4ecdc4 !important;
    animation: gameSparkle 4s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

.floating-icon.float-3 {
    color: #45b7d1 !important;
    animation: gameRotateFloat 7s linear infinite !important;
    animation-delay: 2s !important;
}

.floating-icon.float-4 {
    color: #f9ca24 !important;
    animation: gameFloatSide 6s ease-in-out infinite !important;
    animation-delay: 3s !important;
}

.floating-icon.float-5 {
    color: #6c5ce7 !important;
    animation: gameSparkle 3.5s ease-in-out infinite !important;
    animation-delay: 1.5s !important;
}

/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    animation: decorationFloat 8s ease-in-out infinite;
}

.decoration-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(253, 208, 0, 0.1), rgba(243, 156, 18, 0.1));
}

.decoration-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
}

.decoration-3 {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 25%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
}

.decoration-square {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(1px);
    animation: decorationRotate 12s linear infinite;
    transform-origin: center;
}

.decoration-4 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 25%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
}

.decoration-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: decorationPulse 6s ease-in-out infinite;
}

.decoration-5 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(46, 204, 113, 0.1);
    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes decorationFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.05;
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        opacity: 0.1;
    }
}

@keyframes decorationRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes decorationPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.05;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Game Elements Floating Animations */
@keyframes gameFloatUp {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.9;
    }
}

@keyframes gameFloatSide {
    0%, 100% { 
        transform: translateX(0px) scale(1);
    }
    50% { 
        transform: translateX(15px) scale(1.1);
    }
}

@keyframes gameRotateFloat {
    0% { 
        transform: rotate(0deg) translateY(0px);
        opacity: 0.5;
    }
    50% { 
        transform: rotate(180deg) translateY(-15px);
        opacity: 0.8;
    }
    100% { 
        transform: rotate(360deg) translateY(0px);
        opacity: 0.5;
    }
}

@keyframes gameSparkle {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.4;
        filter: brightness(1);
    }
    25% { 
        transform: scale(1.2);
        opacity: 0.9;
        filter: brightness(1.5);
    }
    50% { 
        transform: scale(1);
        opacity: 0.7;
        filter: brightness(1.2);
    }
    75% { 
        transform: scale(1.1);
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

@keyframes pixelDance {
    0%, 100% { 
        transform: translateY(0px) rotateZ(0deg);
    }
    25% { 
        transform: translateY(-10px) rotateZ(90deg);
    }
    50% { 
        transform: translateY(-5px) rotateZ(180deg);
    }
    75% { 
        transform: translateY(-15px) rotateZ(270deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(253, 208, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(253, 208, 0, 0.3);
    }
    100% { 
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 15px rgba(253, 208, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #fdd000 0%, #f39c12 100%);
    color: #383838;
    box-shadow: 0 8px 25px rgba(253, 208, 0, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 208, 0, 0.5);
    color: #383838;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Games Section */
.games {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 400;
}

.games-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px auto 40px auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-notice p {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.games-notice i {
    margin-right: 8px;
    color: #00d084;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #1a73e8, #fdd000);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.game-screenshot {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.game-card:hover .game-screenshot img {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.game-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.game-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fdd000 0%, #f39c12 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.game-details {
    flex-grow: 1;
    min-width: 0;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #383838;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-developer {
    color: #01875f;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-number {
    font-size: 0.85rem;
    color: #5f6368;
    font-weight: 500;
}

.game-description {
    color: #5f6368;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

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

.game-category {
    display: inline-block;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.game-actions {
    display: flex;
    align-items: center;
}

.install-btn {
    background: linear-gradient(135deg, #fdd000 0%, #f39c12 100%);
    color: #1f2937;
    border: none;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.install-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fafafa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fdd000;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #fdd000;
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #383838;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #fdd000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #e6c200;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fdd000;
    box-shadow: 0 0 0 3px rgba(253, 208, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: #383838;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fdd000;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #fdd000;
}

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

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

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

.footer-bottom p {
    color: #999;
}

/* Back to top button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: none;
}

.back-to-top-btn button {
    background: #fdd000;
    color: #383838;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 208, 0, 0.3);
}

.back-to-top-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 208, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
        animation: none;
        background: none;
        -webkit-text-fill-color: white;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-icon {
        font-size: 1.5rem !important;
    }
    
    .game-element {
        font-size: 1.2rem !important;
    }
    
    .pixel-block {
        width: 8px !important;
        height: 8px !important;
    }
    
    .decoration-1 {
        width: 80px;
        height: 80px;
    }
    
    .decoration-2 {
        width: 60px;
        height: 60px;
    }
    
    .decoration-3 {
        width: 40px;
        height: 40px;
    }
    
    .decoration-4 {
        width: 30px;
        height: 30px;
    }
    
    .decoration-5 {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid rgba(46, 204, 113, 0.1);
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .game-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .game-header {
        gap: 0.5rem;
    }
    
    .game-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .game-title {
        font-size: 1rem;
    }
    
    .game-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        animation: none;
        background: none;
        -webkit-text-fill-color: white;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-icon {
        font-size: 1rem !important;
    }
    
    .game-element {
        font-size: 1rem !important;
    }
    
    .pixel-block {
        width: 6px !important;
        height: 6px !important;
    }
    
    .decoration-1 {
        width: 60px;
        height: 60px;
    }
    
    .decoration-2 {
        width: 40px;
        height: 40px;
    }
    
    .decoration-3 {
        width: 30px;
        height: 30px;
    }
    
    .decoration-4 {
        width: 20px;
        height: 20px;
    }
    
    .decoration-5 {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 15px solid rgba(46, 204, 113, 0.1);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .game-card {
        max-width: none;
    }
    
    .game-screenshot {
        height: 180px;
    }
    
    .game-header {
        flex-direction: row;
        align-items: center;
    }
    
    .game-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .game-title {
        font-size: 0.95rem;
        -webkit-line-clamp: 1;
    }
    
    .game-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .install-btn {
        width: 100%;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
EOF && echo UPDATED && stat -c '%s bytes' /var/www/seabird/style.css || stat -f '%z bytes' /var/www/seabird/style.css
