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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bull-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bull-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #cccccc, #ffffff);
}

/* Character Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.character-body {
    width: 120px;
    height: 160px;
    background: linear-gradient(45deg, #333333, #666666);
    border-radius: 60px;
    position: relative;
}

.character-head {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.character-bow {
    width: 40px;
    height: 20px;
    background: #000000;
    border-radius: 20px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Mountains Background */
.hero-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.mountain {
    position: absolute;
    bottom: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.mountain-1 {
    left: 10%;
    border-bottom: 120px solid #2c2c2c;
}

.mountain-2 {
    left: 25%;
    border-bottom: 100px solid #3a3a3a;
}

.mountain-3 {
    left: 60%;
    border-bottom: 140px solid #404040;
}

.mountain-4 {
    left: 80%;
    border-bottom: 80px solid #4a4a4a;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #000000, #666666);
    border-radius: 2px;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: #f8f9fa;
}

.welcome-content {
    text-align: center;
}

.welcome-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.welcome-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
}

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

.games .section-title {
    color: white;
}

.games .section-title::after {
    background: linear-gradient(45deg, #ffffff, #cccccc);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 400px;
    width: 100%;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.game-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

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

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.game-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.play-button {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    width: 100%;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #333333, #000000);
    color: white;
    text-decoration: none;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.about-header {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: white;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 0;
}

.about-image {
    margin-top: 60px;
}

.team-workspace {
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.workspace-bg {
    width: 100%;
    height: 100%;
    background: url('visuals/about.png') center/cover;
    border-radius: 20px;
}

/* Remove all pseudo-elements and overlays */
.workspace-bg::before,
.workspace-bg::after,
.team-workspace::before,
.team-workspace::after {
    display: none;
}

/* Keep only the glow animation */
@keyframes workspaceGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5); }
}

.team-workspace {
    animation: workspaceGlow 4s ease-in-out infinite;
}

/* More Section */
.more {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
    color: white;
}

.more .section-title {
    color: white;
}

.more-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.newsletter h3, .social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #cccccc, #ffffff);
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: invert(1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: white;
}

.social-icon:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.footer-contact {
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #ccc;
}

.footer-contact p:first-of-type {
    margin-bottom: 1.5rem;
}

.footer-contact p:last-of-type {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-description p {
        font-size: 1.1rem;
    }
    
    .team-workspace {
        height: 300px;
        max-width: 90%;
    }
    
    .more-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .bull-logo img {
        width: 35px;
        height: 35px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-image {
        height: 300px;
    }
}