/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, #f7931e, #ff6b35, transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ff6b35;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    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="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Graffiti Elements */
.hero::after {
    content: '';
    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 400 400"><defs><filter id="glow"><feGaussianBlur stdDeviation="3" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><text x="50" y="80" font-family="Arial Black" font-size="60" fill="%23ff6b35" opacity="0.1" transform="rotate(-15 200 200)">TPRM</text><text x="300" y="120" font-family="Arial Black" font-size="40" fill="%23f7931e" opacity="0.08" transform="rotate(10 200 200)">RAP</text><text x="100" y="300" font-family="Arial Black" font-size="50" fill="%23ff6b35" opacity="0.06" transform="rotate(-5 200 200)">BATTLE</text><circle cx="80" cy="80" r="15" fill="%23ff6b35" opacity="0.1"/><circle cx="320" cy="320" r="20" fill="%23f7931e" opacity="0.08"/><path d="M 50 200 Q 100 150 150 200 T 250 200" stroke="%23ff6b35" stroke-width="3" fill="none" opacity="0.1"/><path d="M 200 100 Q 250 50 300 100 T 350 100" stroke="%23f7931e" stroke-width="2" fill="none" opacity="0.08"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b35;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.mic-stand {
    position: relative;
    z-index: 2;
}

.mic-base {
    width: 20px;
    height: 100px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 10px;
    margin: 0 auto;
}

.mic-arm {
    width: 80px;
    height: 8px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 4px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.mic-head {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    animation: wave 2s infinite;
    opacity: 0;
}

.wave:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.wave:nth-child(3) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b35;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    border-radius: 1px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    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 300 300"><text x="20" y="60" font-family="Arial Black" font-size="40" fill="%23ff6b35" opacity="0.05" transform="rotate(-20 150 150)">FOUNDER</text><text x="200" y="200" font-family="Arial Black" font-size="30" fill="%23f7931e" opacity="0.04" transform="rotate(15 150 150)">LEGEND</text><path d="M 50 100 Q 100 50 150 100 T 250 100" stroke="%23ff6b35" stroke-width="2" fill="none" opacity="0.03"/><circle cx="250" cy="80" r="12" fill="%23f7931e" opacity="0.04"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.founder-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    overflow: hidden;
    position: relative;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.founder-avatar:hover .founder-photo {
    transform: scale(1.05);
}

.founder-name {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ff6b35;
}

.founder-title {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Battle Section */
.battle {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.battle::before {
    content: '';
    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 400 400"><text x="30" y="80" font-family="Arial Black" font-size="50" fill="%23ff6b35" opacity="0.06" transform="rotate(-25 200 200)">BATTLE</text><text x="280" y="150" font-family="Arial Black" font-size="35" fill="%23f7931e" opacity="0.05" transform="rotate(20 200 200)">ARENA</text><text x="100" y="320" font-family="Arial Black" font-size="40" fill="%23ff6b35" opacity="0.04" transform="rotate(-10 200 200)">FIGHT</text><path d="M 80 200 Q 130 150 180 200 T 280 200" stroke="%23ff6b35" stroke-width="3" fill="none" opacity="0.05"/><path d="M 150 100 Q 200 50 250 100 T 320 100" stroke="%23f7931e" stroke-width="2" fill="none" opacity="0.04"/><circle cx="350" cy="300" r="18" fill="%23ff6b35" opacity="0.05"/><circle cx="50" cy="350" r="15" fill="%23f7931e" opacity="0.04"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.battle-stage {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.battle-stage::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.battle-stage::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -40%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.stage-lights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.light {
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.light:nth-child(2) {
    animation-delay: 0.3s;
}

.light:nth-child(3) {
    animation-delay: 0.6s;
}

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

.battle-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.competitor {
    text-align: center;
    flex: 1;
}

.competitor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #ffffff;
}

.competitor h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.health-bar {
    width: 200px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
}

.health-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.vs-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.vs-badge::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: left 0.5s ease;
}

.vs-badge:hover::before {
    left: 100%;
}

.battle-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-battle, .btn-reset {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-battle {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-battle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-reset {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-reset:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}



/* Footer */
.footer {
    background: #000000;
    padding: 50px 0 20px;
    border-top: 2px solid #ff6b35;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: #ff6b35;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-stats {
        justify-content: center;
    }
    
    .battle-area {
        flex-direction: column;
        gap: 30px;
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .battle-controls {
        flex-direction: column;
        align-items: center;
    }
} 