/* Main styles for 36x.org */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 400px;
    max-height: 200px;
    width: auto;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.7));
}

@media (max-width: 768px) {
    .logo img {
        max-width: 300px;
        max-height: 150px;
    }
}

.tagline {
    font-size: 1.5em;
    color: #cccccc;
    margin-bottom: 40px;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-grow: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.project-card:hover {
    border-color: #62a6ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(98, 166, 255, 0.2);
}

.project-title {
    font-size: 1.8em;
    color: #62a6ff;
    margin-bottom: 15px;
    font-weight: bold;
}

.project-description {
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-highlights {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    padding: 5px 0;
    color: #cccccc;
}

.project-highlights li:before {
    content: "✓ ";
    color: #62a6ff;
    font-weight: bold;
}

.about-section {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 40px;
}

.about-section h2 {
    color: #62a6ff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #333;
    color: #666;
}

.footer a {
    color: #62a6ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.disclaimer-notice {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #999;
    text-align: center;
}

.disclaimer-notice a {
    color: #62a6ff;
    text-decoration: none;
}

.disclaimer-notice a:hover {
    text-decoration: underline;
}
