/* Stream Border Overlay Styles */
.stream-border-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
}

.stream-border-overlay .clickable {
    pointer-events: auto;
}

/* Top Sponsor Border */
.sponsor-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 50%,
        transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

/* DEFAI.GG Main Sponsor */
.main-sponsor {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.main-sponsor img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: contain;
}

.main-sponsor-text {
    display: flex;
    flex-direction: column;
}

.sponsor-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sponsor-name {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
}

/* Championship Title Center */
.championship-title-border {
    text-align: center;
}

.championship-title-border h1 {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(to right, #fbbf24, #fb923c, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.championship-subtitle {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Prize Pool & Live Indicator */
.prize-pool-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prize-pool {
    text-align: right;
}

.prize-label {
    font-size: 10px;
    color: #9ca3af;
}

.prize-amount {
    font-size: 20px;
    font-weight: bold;
    color: #10b981;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text {
    color: #ef4444;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Bottom Sponsor Border */
.sponsor-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 50%,
        transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

/* PUMP.FUN Section */
.pump-fun-sponsor {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 191, 36, 0.2));
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.pump-fun-sponsor img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    object-fit: contain;
}

.pump-fun-text {
    display: flex;
    flex-direction: column;
}

.pump-fun-label {
    font-size: 10px;
    color: #9ca3af;
}

.pump-fun-name {
    font-size: 16px;
    font-weight: bold;
    color: #fb923c;
}

/* Contract Address */
.contract-section {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.contract-box {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.contract-box:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(30, 30, 30, 0.9);
}

.contract-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contract-label {
    font-size: 11px;
    color: #9ca3af;
}

.contract-address {
    font-family: monospace;
    font-size: 12px;
    color: #a855f7;
}

.contract-coming-soon {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

.contract-actions {
    display: flex;
    gap: 8px;
}

.contract-btn {
    padding: 5px 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: #a855f7;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
}

.contract-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.defai-btn {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #a855f7;
}

.defai-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.pump-btn {
    background: rgba(251, 146, 60, 0.2);
    border: 1px solid rgba(251, 146, 60, 0.5);
    color: #fb923c;
}

.pump-btn:hover {
    background: rgba(251, 146, 60, 0.3);
    transform: translateY(-2px);
}

/* Side Borders */
.sponsor-border-left,
.sponsor-border-right {
    position: absolute;
    top: 80px;
    bottom: 70px;
    width: 50px;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        transparent 100%);
}

.sponsor-border-right {
    right: 0;
    background: linear-gradient(-90deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        transparent 100%);
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.corner-tl {
    top: 75px;
    left: 45px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.corner-tr {
    top: 75px;
    right: 45px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 12px;
}

.corner-bl {
    bottom: 65px;
    left: 45px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 12px;
}

.corner-br {
    bottom: 65px;
    right: 45px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Adjust main content to account for borders */
.championship-container.with-border {
    padding: 85px 55px 75px 55px;
}

/* Floating sponsor particles */
@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.sponsor-particle {
    position: fixed;
    font-size: 20px;
    opacity: 0.3;
    animation: float-up 12s linear infinite;
    pointer-events: none;
    z-index: 1;
}