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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    width: 30px;
    height: 30px;
}

.square {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.square.red { background: #ff4444; }
.square.green { background: #44ff44; }
.square.blue { background: #4444ff; }
.square.yellow { background: #ffff44; }

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0078d4;
    text-decoration: underline;
    text-decoration-style: wavy;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #0078d4;
    text-decoration: line-through;
}

.nav-menu a.highlight {
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow 2s infinite;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary, .btn-game {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: #0078d4;
    color: white;
}

.btn-primary:hover {
    background: #ff0000;
    transform: rotate(5deg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: scale(1.1);
}

.btn-game {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
    color: white;
    border: 2px solid white;
    animation: gameButtonRainbow 3s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-game:hover {
    background: linear-gradient(45deg, #ff9ff3, #54a0ff, #5f27cd, #00d2d3);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes gameButtonRainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Fake Window */
.fake-window {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: shake 5s infinite;
}

@keyframes shake {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 0); }
    94% { transform: translate(2px, 0); }
    96% { transform: translate(-2px, 0); }
    98% { transform: translate(2px, 0); }
}

.window-header {
    background: #0078d4;
    color: white;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    cursor: pointer;
}

.minimize { background: #ffc107; }
.maximize { background: #28a745; }
.close { background: #dc3545; }

.window-content {
    padding: 20px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00ff00, #ff0000);
    width: 0%;
    animation: fakeProgress 10s infinite;
}

@keyframes fakeProgress {
    0% { width: 0%; }
    50% { width: 73%; }
    51% { width: 0%; }
    100% { width: 0%; }
}

.small-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
}

/* Products Section */
.products {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
    margin: 2rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: #ff0000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ffff00) 1;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0078d4;
}

.product-card ul {
    list-style: none;
    margin: 1rem 0;
}

.product-card li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ccc;
}

.btn-product {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-product:hover {
    background: linear-gradient(45deg, #ff0000, #00ff00);
    transform: scale(0.95);
}

/* News Section */
.news {
    padding: 4rem 0;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: scale(1.05);
}

.news-item h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.news-date {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Testimonials */
.testimonials {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border-left: 5px solid #ff0000;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #0078d4;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #0078d4;
}

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

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

.footer-section a:hover {
    color: #ff0000;
    text-decoration: line-through;
}

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

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 0;
    margin: 2rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: #00ff00;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    border-image: linear-gradient(45deg, #00ff00, #0000ff, #ff0000, #ffff00) 1;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0078d4;
}

.btn-service {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-service:hover {
    background: linear-gradient(45deg, #00ff00, #0000ff);
    transform: scale(0.95);
}

/* Support Section */
.support {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.support h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-main {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.support-main h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.faq {
    margin-top: 2rem;
}

.faq h4 {
    color: #0078d4;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #0078d4;
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
}

.faq-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    font-style: italic;
}

.support-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card, .status-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card h4, .status-card h4 {
    color: #0078d4;
    margin-bottom: 1rem;
    border-bottom: 1px solid #0078d4;
    padding-bottom: 0.5rem;
}

.btn-contact {
    width: 100%;
    padding: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #ff0000;
    transform: scale(1.05);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.status-dot.red {
    background: #dc3545;
}

.status-dot.green {
    background: #28a745;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 0;
    margin: 2rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: #0000ff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: #0078d4;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #0078d4;
    padding-bottom: 0.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #ccc;
}

.leadership {
    margin-top: 1rem;
}

.leader {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0078d4;
}

.leader h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.leader p {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.about-stats {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-stats h3 {
    color: #0078d4;
    margin-bottom: 2rem;
    border-bottom: 2px solid #0078d4;
    padding-bottom: 0.5rem;
}

.stat {
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Careers Section */
.careers {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.careers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.careers-intro {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.careers-intro h3 {
    color: #0078d4;
    margin-bottom: 1rem;
}

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

.job-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0000, #ffff00, #00ff00, #0000ff) 1;
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.job-card h4 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.job-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.job-requirements {
    margin: 1.5rem 0;
}

.job-requirements h5 {
    color: #0078d4;
    margin-bottom: 0.5rem;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    border-bottom: 1px dashed #ccc;
    font-size: 0.9rem;
}

.btn-apply {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-apply:hover {
    background: linear-gradient(45deg, #ff0000, #ffff00);
    transform: scale(0.95);
}

.benefits {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.benefits h3 {
    color: #0078d4;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #0078d4;
    padding-bottom: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    text-align: center;
}

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

.benefit p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .product-grid,
    .news-grid,
    .testimonial-grid,
    .services-grid,
    .jobs-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .support-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-sidebar {
        order: -1;
    }
}

/* Fun animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}
