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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.support-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.support-button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.glitch {
    position: relative;
    font-size: clamp(2.5em, 8vw, 4em);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0.05em 0 0 #ffffff, -0.05em -0.025em 0 #cccccc, 0.025em 0.05em 0 #999999;
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 4s infinite;
    color: #ffffff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 4s infinite;
    color: #cccccc;
    z-index: -2;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(1px, -1px); }
    40% { transform: translate(1px, 1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

header {
    text-align: center;
    padding: 40px 20px 30px;
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 25%, #cccccc 50%, #999999 75%, transparent 100%);
    animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5em, 8vw, 5em);
    margin-bottom: 0.2em;
    color: #ffffff;
    letter-spacing: 0.1em;
}

h2 {
    font-family: 'Orbitron', monospace;
    color: #cccccc;
    font-weight: 400;
    font-size: clamp(1.2em, 4vw, 1.8em);
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.content-section {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-section:hover {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.content-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #ffffff, #cccccc, #999999, #ffffff);
    border-radius: 9px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-section:hover::before {
    opacity: 0.3;
}

p {
    font-size: 1.2em;
    color: #dddddd;
    margin-bottom: 1.5em;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.highlight {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2); }
}

.danger-text {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: dangerPulse 1.5s ease-in-out infinite;
}

@keyframes dangerPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.2); }
}

blockquote {
    border-left: 4px solid #ffffff;
    margin: 2em 0;
    padding: 20px 25px;
    color: #ffffff;
    font-style: italic;
    font-size: 1.3em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3em;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.enemy-companies {
    text-align: center;
    margin: 40px 0;
}

.enemy-companies h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.company-item {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.company-item:hover {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.company-header {
    margin-bottom: 15px;
}

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3em;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-flag {
    font-size: 1.2em;
}

.company-subtitle {
    font-size: 0.9em;
    color: #cccccc;
}

.risk-bar-container {
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 12px;
    position: relative;
}

.risk-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    color: #cccccc;
}

.risk-level {
    font-family: 'Orbitron', monospace;
    font-size: 0.75em;
}

.risk-level.critical {
    color: #ffffff;
}

.risk-level.high {
    color: #cccccc;
}

.risk-level.medium {
    color: #999999;
}

.risk-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.risk-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease;
    position: relative;
}

.risk-fill.critical {
    background: linear-gradient(90deg, #ffffff, #cccccc);
    width: 95%;
}

.risk-fill.high {
    background: linear-gradient(90deg, #cccccc, #999999);
    width: 80%;
}

.risk-fill.medium {
    background: linear-gradient(90deg, #999999, #666666);
    width: 65%;
}

.threat-breakdown {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.threat-breakdown-title {
    font-size: 0.8em;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.threat-factors {
    list-style: none;
    padding: 0;
}

.threat-factors li {
    font-size: 0.75em;
    color: #cccccc;
    margin-bottom: 4px;
    padding-left: 12px;
    position: relative;
    line-height: 1.4;
}

.threat-factors li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
}

.company-description {
    font-size: 0.95em;
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-predictions {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
}

.job-predictions-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.job-list li {
    font-size: 0.85em;
    color: #cccccc;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
    line-height: 1.4;
}

.job-list li::before {
    content: '🔴';
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

.risk-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
}

.risk-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.risk-description {
    font-size: 0.85em;
    color: #cccccc;
    line-height: 1.5;
}

.cta {
    margin: 40px 0;
    padding: 30px;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.cta::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;
}

.cta:hover::before {
    left: 100%;
}

.cta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: 100%;
}

.cta a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.cta a p {
    margin: 0;
    padding: 0;
}

.footer {
    margin-top: 60px;
    text-align: center;
    color: #666666;
    font-size: 0.9em;
    padding: 25px;
    border-top: 1px solid #333333;
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .support-button {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8em;
    }
    
    header {
        padding: 30px 15px 20px;
    }
    
    main {
        padding: 15px;
    }
    
    .content-section {
        padding: 20px;
        margin: 20px 0;
        border-radius: 6px;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 0.05em;
    }
    
    h2 {
        font-size: 1.1em;
        letter-spacing: 0.1em;
    }
    
    p {
        font-size: 1.1em;
        line-height: 1.7;
    }
    
    blockquote {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-item {
        padding: 20px;
    }
    
    .cta {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .cta a {
        font-size: 1.2em;
    }
    
    .footer {
        margin-top: 40px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .support-button {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.7em;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1em;
    }
    
    p {
        font-size: 1em;
    }
    
    .content-section {
        padding: 15px;
    }
    
    .company-item {
        padding: 15px;
    }
    
    .cta {
        padding: 20px 15px;
    }
    
    .cta a {
        font-size: 1.1em;
    }
} 