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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link a:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 100000;
    color: #76b900;
    padding: 8px 16px;
    background: #000;
}

/* Header */
.header {
    background-color: #000;
    padding: 15px 30px;
    border-bottom: 1px solid #333;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.nvidia-logo-icon {
    display: flex;
    align-items: center;
}

.nvidia-logo-icon svg {
    width: 24px;
    height: 24px;
}

.nvidia-logo {
    color: #76b900;
    font-weight: bold;
    font-size: 14px;
}

.separator {
    color: #76b900;
}

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

.nav-links-top a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links-top a:hover {
    color: #76b900;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geforce-title {
    color: #76b900;
    font-size: 32px;
    font-weight: normal;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.main-nav a:hover {
    color: #76b900;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 3px;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background-color: #111;
    padding: 25px;
    border-radius: 5px;
}

.feature-card h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ccc;
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.image-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.grid-item {
    background-color: #222;
    height: 80px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.game-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    position: relative;
    transition: transform 0.3s ease;
}

.grid-item:hover .game-preview {
    transform: scale(1.05);
}

.game-title {
    color: #76b900;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px rgba(118, 185, 0, 0.5);
    padding: 5px;
}

.game-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(118, 185, 0, 0.8));
}

.dlss-image {
    margin-bottom: 20px;
}

.dlss-visual {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 30%, #76b900 60%, #000 100%);
    height: 200px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlss-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(118, 185, 0, 0.1) 2px,
            rgba(118, 185, 0, 0.1) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(118, 185, 0, 0.1) 2px,
            rgba(118, 185, 0, 0.1) 4px
        );
    opacity: 0.5;
}

.dlss-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.dlss-logo {
    font-size: 48px;
    font-weight: bold;
    color: #76b900;
    text-shadow: 0 0 20px rgba(118, 185, 0, 0.8);
    letter-spacing: 8px;
}

.dlss-version {
    font-size: 24px;
    color: #fff;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dlss-subtitle {
    font-size: 12px;
    color: #ccc;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.learn-more-btn {
    background-color: #76b900;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #8dd500;
}

/* Right Column */
.right-column {
    background-color: #111;
    padding: 30px;
    border-radius: 5px;
}

.drivers-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
}

.driver-section {
    margin-bottom: 40px;
}

.driver-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.driver-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #76b900;
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #8dd500;
}

.download-icon {
    font-size: 18px;
}

.search-btn {
    width: 100%;
    justify-content: center;
}

/* Info Section */
.info-section {
    padding: 40px 30px;
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

.info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    padding: 30px;
}

.info-icon {
    color: #76b900;
    font-size: 32px;
    margin-bottom: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(118, 185, 0, 0.5));
}

.info-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-link {
    color: #76b900;
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    padding: 40px 30px;
    border-top: 1px solid #333;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #76b900;
    text-decoration: none;
    margin-bottom: 10px;
}

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

.social-section {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    color: #76b900;
}

/* Footer */
.footer {
    padding: 30px;
    background-color: #000;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    color: #76b900;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-links-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-legal a:hover {
    color: #76b900;
}

.copyright {
    color: #ccc;
    font-size: 14px;
}

/* Feedback Tab */
.feedback-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    padding: 15px 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    z-index: 1000;
}

.feedback-tab:hover {
    background-color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}
