/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1b1b1b 100%);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, #1b1b1b 0%, #1b1b1b 100%);
    border-bottom: 1px solid #333333;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #cccccc;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1b1b1b;
    border: 1px solid #333333;
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    height: 40vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Services & Games Section */
.services-games-section {
    padding: 100px 0;
    margin: 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-column, .games-column {
    text-align: center;
}

.service-item, .game-item {
    border: 2px solid #464646;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover, .game-item:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item h3, .game-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-item p, .game-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Why Choose Us Section */
.azure-section {
    padding: 100px 0;
    border-top: 2px solid #000000;
    margin: 0;
    width: 100%;
}

.azure-content {
    text-align: center;
}

.azure-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.sla-info {
    flex: 1;
    min-width: 300px;
    border: 2px solid #464646;
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
}

.sla-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sla-info ul {
    list-style: none;
    padding: 0;
}

.sla-info li {
    padding: 0.5rem 0;
    opacity: 0.8;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #ffffff;
}

.sla-info li:last-child {
    border-bottom: none;
}

.sla-info strong {
    color: #ffffff;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .azure-info {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        height: 30vh;
        padding-top: 60px;
    }
    
    .nav-container {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 150px;
    }
} 