@font-face {
    font-family: 'Monogram';
    src: url('../assets/monogram-extended.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monogram', 'Courier New', monospace;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::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 ease;
}

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

.nav-btn:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.contact-btn {
    background: #333;
    border-color: #555;
}

.contact-btn:hover {
    background: #555;
    border-color: #ffffff;
}

.discord-navbar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #333;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 40px;
    height: 40px;
}

.discord-navbar-link::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 ease;
}

.discord-navbar-link:hover::before {
    left: 100%;
}

.discord-navbar-link:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

.discord-navbar-link .bi-discord {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.discord-navbar-link:hover .bi-discord {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: slideInFromLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.brand-highlight {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 0.5s both;
}

.cta-btn {
    background: #333;
    border: 2px solid #555;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: bounceIn 1s ease-out 0.8s both;
}

.cta-btn:hover {
    background: #555;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.game-card:hover {
    border-color: #555;
    transform: translateY(-5px) scale(1.02);
}

.game-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-info {
    text-align: left;
}

.game-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #333;
    border: 2px solid #555;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-btn::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 ease;
}

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

.game-btn:hover {
    background: #555;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* NEW: Horizontal Screenshot Gallery Styles */
.screenshot-gallery {
    width: 100%;
    overflow: hidden;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    position: relative;
    cursor: grab;
}

.screenshot-gallery:active {
    cursor: grabbing;
}

.gallery-container {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
    user-select: none;
}

.gallery-screenshot {
    flex: 0 0 auto;
    width: 120px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.gallery-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@media (max-width: 768px) {
    .gallery-screenshot {
        width: 90px;
        height: 210px;
    }
    
    .screenshot-gallery {
        padding: 0.75rem;
    }
}

/* Coming Soon Section */
.coming-soon {
    padding: 80px 0;
    background: #000000;
}

.teaser-card {
    text-align: center;
    padding: 3rem;
    border: 2px solid #333;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.teaser-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mystery-box {
    width: 80px;
    height: 80px;
    background: #333;
    border: 2px solid #555;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 60px 0;
    }
    
    .teaser-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .teaser-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .teaser-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .mystery-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        padding: 40px 0;
    }
    
    .teaser-card {
        padding: 1.5rem 1rem;
        margin: 0 5px;
        border-radius: 8px;
    }
    
    .teaser-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .teaser-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .mystery-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .teaser-card {
        padding: 1rem 0.75rem;
        margin: 0;
    }
    
    .teaser-title {
        font-size: 1.3rem;
    }
    
    .teaser-text {
        font-size: 0.85rem;
    }
    
    .mystery-box {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #111;
    margin: 15% auto;
    padding: 2rem;
    border: 2px solid #333;
    border-radius: 16px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #333;
    border: 2px solid #555;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.email-btn:hover {
    background: #555;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .game-content {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .teaser-title {
        font-size: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        width: 90%;
        margin: 25% auto;
    }
}
