/* Shadow Runner Page Styles */
.shadowrunner-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.shadowrunner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    opacity: 0.8;
    z-index: 1;
}

.shadowrunner-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-ios {
    background: linear-gradient(45deg, #007aff, #5856d6);
    color: white;
}

.badge-macos {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.badge-swift {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.badge-game {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #3a3a4e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #d1d1d1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-size: 0.75rem;
}

/* Getting Started Section */
.getting-started-section {
    padding: 80px 0;
}

.getting-started-content {
    max-width: 800px;
    margin: 0 auto;
}

.prerequisites-section, .installation-section {
    margin-bottom: 3rem;
}

.prerequisites-section h3, .installation-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.prerequisites-list {
    list-style: none;
    padding: 0;
}

.prerequisites-list li {
    color: #d1d1d1;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
}

.code-block {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #3a3a4e;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #e6e6e6;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-block code {
    color: #4ecdc4;
}

.installation-section p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Project Structure Section */
.project-structure-section {
    padding: 80px 0;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.structure-item {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #3a3a4e;
    transition: all 0.3s ease;
}

.structure-item:hover {
    transform: translateY(-3px);
    border-color: #ff6b6b;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.structure-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.structure-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Game Architecture Section */
.game-architecture-section {
    padding: 80px 0;
}

.architecture-content {
    max-width: 1000px;
    margin: 0 auto;
}

.core-components h3, .game-loop h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.component-item {
    margin-bottom: 2.5rem;
}

.component-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.game-loop-list {
    list-style: none;
    padding: 0;
}

.game-loop-list li {
    color: #d1d1d1;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

/* Visual Design Section */
.visual-design-section {
    padding: 80px 0;
}

.design-content {
    max-width: 900px;
    margin: 0 auto;
}

.design-item {
    margin-bottom: 2.5rem;
}

.design-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.design-list {
    list-style: none;
    padding: 0;
}

.design-list li {
    color: #d1d1d1;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #96ceb4;
}

/* Audio System Section */
.audio-system-section {
    padding: 80px 0;
}

.audio-content {
    max-width: 800px;
    margin: 0 auto;
}

.sound-effects h3, .audio-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.audio-list {
    list-style: none;
    padding: 0;
}

.audio-list li {
    color: #d1d1d1;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #f7931e;
}

/* Device Compatibility Section */
.device-compatibility-section {
    padding: 80px 0;
}

.compatibility-content {
    max-width: 1200px;
    margin: 0 auto;
}

.iphone-models h3, .responsive-features h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.model-group {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #3a3a4e;
    transition: all 0.3s ease;
}

.model-group:hover {
    transform: translateY(-3px);
    border-color: #5856d6;
    box-shadow: 0 15px 30px rgba(88, 86, 214, 0.2);
}

.model-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.model-group p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.responsive-list {
    list-style: none;
    padding: 0;
}

.responsive-list li {
    color: #d1d1d1;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #5856d6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: #4ecdc4;
    border-color: #4ecdc4;
}

.btn-outline-primary:hover {
    background: #4ecdc4;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #b8b8b8;
    border-color: #b8b8b8;
}

.btn-outline:hover {
    background: #b8b8b8;
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .shadowrunner-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card, .structure-item, .model-group {
        padding: 1.5rem;
    }
}
