/* TyranShield - Custom CSS */
:root {
    --primary-color: #2D5A27; /* Deep Emerald */
    --secondary-color: #CC5500; /* Burnt Orange */
    --accent-color: #4682B4; /* Steel Blue */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff6b35);
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Age Verification Popup */
.tyranshield-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.tyranshield-popup-content {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tyranshield-popup-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 2rem;
}

.tyranshield-popup-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tyranshield-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.tyranshield-btn-primary, .tyranshield-btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tyranshield-btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.tyranshield-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(204, 85, 0, 0.4);
}

.tyranshield-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.tyranshield-btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navigation */
.tyranshield-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tyranshield-logo h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tyranshield-nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.tyranshield-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.tyranshield-nav-link:hover {
    color: var(--secondary-color);
}

.tyranshield-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition);
}

.tyranshield-nav-link:hover::after {
    width: 100%;
}

.tyranshield-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.tyranshield-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.tyranshield-hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tyranshield-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.tyranshield-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.tyranshield-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tyranshield-hero-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tyranshield-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(204, 85, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(204, 85, 0, 0.8);
    }
}

.tyranshield-hero-title {
    font-size: 3.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.1;
    font-weight: 900;
}

.tyranshield-hero-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tyranshield-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.tyranshield-hero-stats {
    display: flex;
    gap: 30px;
    margin: 10px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.tyranshield-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tyranshield-hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tyranshield-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.tyranshield-game-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.preview-card:hover::before {
    left: 100%;
}

.preview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
}

.preview-card.active {
    background: rgba(204, 85, 0, 0.2);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.preview-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.preview-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styling */
.tyranshield-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tyranshield-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

/* Games Section */
.tyranshield-games {
    padding: 100px 0;
    background: var(--light-bg);
}

.tyranshield-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.games-header-content {
    flex: 1;
}

.games-header-stats {
    display: flex;
    gap: 30px;
}

.header-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-light);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

.tyranshield-games-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.featured-game {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.featured-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.1), transparent);
    transition: var(--transition);
}

.featured-game:hover::before {
    left: 100%;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

.featured-game h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.featured-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.highlight-icon {
    font-size: 1.2rem;
}

.featured-difficulty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.difficulty-label {
    font-weight: 600;
    color: #666;
}

.difficulty-medium {
    color: var(--secondary-color);
    font-weight: 600;
}

.featured-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.games-grid-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tyranshield-game-card.compact {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tyranshield-game-card.compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.tyranshield-game-card.compact:hover::before {
    left: 100%;
}

.tyranshield-game-card.compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.game-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tyranshield-game-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

.game-card-info h3 {
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.game-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.game-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.tyranshield-game-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tyranshield-tag {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.game-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.tyranshield-game-difficulty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tyranshield-difficulty-label {
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
}

.tyranshield-difficulty-easy {
    color: #28a745;
    font-weight: 600;
    font-size: 0.85rem;
}

.tyranshield-difficulty-medium {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.tyranshield-difficulty-hard {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.85rem;
}

.compact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Features Section */
.tyranshield-features {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.tyranshield-features .tyranshield-section-title {
    color: var(--text-light);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tyranshield-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tyranshield-feature-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tyranshield-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.tyranshield-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tyranshield-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tyranshield-feature-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* About Section */
.tyranshield-about {
    padding: 100px 0;
    background: var(--light-bg);
}

.tyranshield-about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tyranshield-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.tyranshield-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.tyranshield-about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tyranshield-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tyranshield-stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.tyranshield-stat p {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.tyranshield-faq {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.tyranshield-faq .tyranshield-section-title {
    color: var(--text-light);
}

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

.tyranshield-faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tyranshield-faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tyranshield-faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tyranshield-faq-item p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Contact Section */
.tyranshield-contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.tyranshield-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.tyranshield-contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tyranshield-contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.tyranshield-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tyranshield-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tyranshield-contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.tyranshield-contact-item p {
    margin: 0;
    font-weight: 500;
}

/* Contact Form */
.tyranshield-contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tyranshield-form-group {
    margin-bottom: 25px;
}

.tyranshield-form-group input,
.tyranshield-form-group select,
.tyranshield-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.tyranshield-form-group input:focus,
.tyranshield-form-group select:focus,
.tyranshield-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.tyranshield-contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer */
.tyranshield-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.tyranshield-footer-section h3,
.tyranshield-footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.tyranshield-footer-section ul li {
    margin-bottom: 10px;
}

.tyranshield-footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.tyranshield-footer-section ul li a:hover {
    color: var(--secondary-color);
}

.tyranshield-footer-section p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 10px;
}

.tyranshield-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tyranshield-disclaimer h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tyranshield-disclaimer p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 0.95rem;
}

.tyranshield-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tyranshield-hamburger {
        display: flex;
    }
    
    .tyranshield-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
    }
    
    .tyranshield-nav-menu.active {
        left: 0;
    }
    
    .tyranshield-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .tyranshield-hero-title {
        font-size: 2.5rem;
    }
    
    .tyranshield-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tyranshield-hero-visual {
        height: 300px;
    }
    
    .tyranshield-floating-element {
        font-size: 3rem;
    }
    
    .tyranshield-games-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .games-header-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .tyranshield-games-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-game {
        padding: 30px;
    }
    
    .featured-game h3 {
        font-size: 1.8rem;
    }
    
    .featured-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .game-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .compact-btn {
        width: 100%;
    }
    
    .tyranshield-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tyranshield-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tyranshield-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tyranshield-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .tyranshield-hero-buttons {
        justify-content: center;
    }
    
    .tyranshield-popup-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .tyranshield-container {
        padding: 0 15px;
    }
    
    .tyranshield-hero-title {
        font-size: 2rem;
    }
    
    .tyranshield-section-title {
        font-size: 2rem;
    }
    
    .tyranshield-game-card,
    .tyranshield-contact-form {
        padding: 25px;
    }
    
    .tyranshield-popup-content {
        padding: 25px;
        margin: 15px;
    }
}

/* Utility Classes */
.tyranshield-hidden {
    display: none !important;
}

.tyranshield-visible {
    display: block !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tyranshield-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Notification Styles */
.tyranshield-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    z-index: 1001;
    transform: translateX(400px);
    transition: var(--transition);
}

.tyranshield-notification.show {
    transform: translateX(0);
}

.tyranshield-notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.tyranshield-notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}