/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Titillium Web', sans-serif;
    color: white;
    overflow-x: hidden;
    background: #0a0a0e;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 20, 147, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0e 0%, #120e18 100%);
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 1px, rgba(255, 20, 147, 0.02) 1px, rgba(255, 20, 147, 0.02) 2px);
    pointer-events: none;
    z-index: -1;
}

/* === EKRAN LADOWANIA === */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loadingScreen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.loading-logo {
    margin-bottom: 30px;
}

.logo-text {
    font-family: 'Paytone One', sans-serif;
    font-size: 2.5rem;
    color: #ff1493;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.spinner-dot {
    width: 12px;
    height: 12px;
    background: #ff1493;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.spinner-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.loading-progress {
    margin-top: 30px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff1493, #ff0066);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.loading-text {
    color: #aaaacc;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* === MAIN CONTAINER === */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* === TOP ACTIONS SECTION === */
.top-actions-section {
    margin: 15px 0 30px;
}

.actions-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.action-card {
    border-radius: 12px;
    padding: 16px 28px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.mecze-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-color: #ff8c00;
}

.mecze-btn:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.ustawienia-btn {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    border-color: #00aaff;
}

.ustawienia-btn:hover {
    background: linear-gradient(135deg, #00aaff, #0088cc);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.donate-btn {
    background: linear-gradient(135deg, #ff1493, #ff0066);
    border-color: #ff1493;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #ff0066, #ff1493);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.3);
}

.action-icon {
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.action-text {
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Paytone One', sans-serif;
    text-align: center;
    font-size: 2rem;
    color: #ff1493;
    margin: 20px 0 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff1493, #ff0066);
    border-radius: 2px;
}

.section-title-left {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.8rem;
    color: #ff1493;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: left;
}

/* === PARTNERS SECTION === */
.partners-section {
    margin: 20px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin: 20px 0;
}

.partner-card {
    position: relative;
}

.partner-btn {
    width: 100%;
    padding: 14px 8px;
    background: rgba(30, 30, 45, 0.95);
    border: 2px solid #333344;
    border-radius: 10px;
    color: white;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.partner-btn:hover {
    border-color: var(--partner-color, #ff1493);
    background: rgba(40, 40, 60, 0.98);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.3);
}

.age-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #000;
    border: 2px solid #ff4444;
    color: #ff4444;
    font-weight: 900;
    padding: 3px 6px;
    font-size: 0.65rem;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #000;
    border: 2px solid #ff0000;
    color: #ff0000;
    font-weight: 900;
    padding: 3px 6px;
    font-size: 0.65rem;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === YOUTUBE SECTION === */
.youtube-section {
    margin: 30px 0 40px;
}

.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.giveaway-center {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 200px;
}

.giveaway-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    position: relative;
}

.giveaway-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.6);
}

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

.giveaway-text {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.giveaway-badge {
    background: #000;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
    position: absolute;
    top: -8px;
    right: -8px;
}

.social-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(40, 40, 55, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: translateY(-3px);
}

.social-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #2a2a3a;
    background: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 2;
}

.loading-info {
    margin-top: 15px;
    color: #aaaacc;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #ff1493;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.watch-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff1493, #ff0066);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.watch-button:hover {
    background: linear-gradient(135deg, #ff0066, #ff1493);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 20, 147, 0.5);
}

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

.video-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    z-index: 5;
}

.error-content {
    text-align: center;
    max-width: 280px;
}

.error-icon {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.error-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.retry-btn {
    background: #ff1493;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.retry-btn:hover {
    background: #ff0066;
    transform: scale(1.05);
}

/* === STREAM SECTION === */
.stream-section {
    margin: 40px 0 25px;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stream-card {
    background: rgba(30, 30, 45, 0.95);
    border: 2px solid #3a3a55;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.stream-card:hover {
    border-color: #ff1493;
    transform: translateY(-3px);
    background: rgba(40, 40, 60, 0.98);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
}

.stream-card.live {
    background: rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
    }
}

.stream-card.live:hover {
    background: rgba(46, 204, 113, 0.25);
    border-color: #2ecc71;
}

.stream-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.status-indicator.live {
    background: rgba(46, 204, 113, 0.9);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    transition: all 0.3s ease;
}

.status-dot.live {
    background: #ffffff;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% { 
        box-shadow: 0 0 5px #2ecc71;
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px #2ecc71;
        transform: scale(1.2);
    }
}

.status-dot.join-dot {
    background: #5865F2;
    box-shadow: 0 0 8px #5865F2;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.stream-card.live .live-badge {
    opacity: 1;
    transform: translateY(0);
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === STOPKA === */
.site-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333344;
    text-align: center;
    color: #aaaacc;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer a {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ff0066;
    text-decoration: underline;
}

/* === PRZYCISK ODSWIEZANIA STREAMÓW === */
.refresh-streams-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #ff0066);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.refresh-streams-btn:hover {
    background: linear-gradient(135deg, #ff0066, #ff1493);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
}

.refresh-streams-btn:active {
    transform: rotate(180deg) scale(0.95);
}

.refresh-streams-btn.spinning {
    animation: spin-refresh 1s linear infinite;
}

@keyframes spin-refresh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === MINIMALISTYCZNE OKNO MODALNE PARTNEROW === */
.partner-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.partner-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.partner-modal {
    background: #1a1a2e;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 2px solid #ff1493;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.partner-modal-overlay.active .partner-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 20;
    font-family: 'Titillium Web', sans-serif;
}

.modal-close-btn:hover {
    color: #ff1493;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    padding: 25px 25px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 90px;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: inherit;
    flex-shrink: 0;
}

.modal-title {
    color: white;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.modal-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    color: #ff0000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 900;
    border: 1px solid #ff0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 15px;
    right: 60px;
    z-index: 15;
}

.modal-content {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-description-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid;
}

.modal-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

.modal-description .formatted-text {
    display: inline;
}

.modal-code-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.code-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #aaaacc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.code-label i {
    font-size: 1.1rem;
}

.code-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 900;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 2px solid;
    flex: 1;
    text-align: center;
    color: inherit;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-code-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
}

.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #4CAF50;
}

.code-copied-msg {
    text-align: center;
    color: #4CAF50;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Giveaway section */
.modal-giveaway {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #2ecc71;
    display: none;
}

.modal-giveaway.show {
    display: block;
}

.giveaway-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.giveaway-info i {
    color: #2ecc71;
    font-size: 1.3rem;
    margin-top: 2px;
}

.giveaway-info div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.giveaway-info strong {
    color: #2ecc71;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.giveaway-info span {
    color: #ccccff;
    font-family: 'Titillium Web', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

.giveaway-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    background: #5865F2;
    color: white;
    border: 2px solid #5865F2;
    width: 100%;
}

.giveaway-discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex: 1;
}

.partner-btn {
    background: transparent;
    color: white;
    border: 2px solid;
}

.partner-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.modal-instructions {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.instructions-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ff1493;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructions-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instruction-step {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    padding-left: 0;
    position: relative;
}

/* === RESPONSYWNOSC === */
@media (max-width: 992px) {
    .actions-grid {
        gap: 20px;
    }
    
    .action-card {
        padding: 14px 24px;
        font-size: 1.1rem;
        min-width: 140px;
    }
    
    .youtube-header {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .section-title-left, .giveaway-center, .social-container {
        width: 100%;
        justify-content: center;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .giveaway-btn {
        justify-content: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .social-container {
        justify-content: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-modal {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stream-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-card {
        width: 100%;
        max-width: 250px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .social-img {
        width: 20px;
        height: 20px;
    }
    
    .code-display {
        flex-direction: column;
        gap: 15px;
    }
    
    .code-value {
        font-size: 1.6rem;
        padding: 12px;
        width: 100%;
        letter-spacing: 1px;
        min-height: 50px;
    }
    
    .copy-code-btn {
        width: 100%;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: 110px;
    }
    
    .modal-title-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .modal-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-badge {
        position: relative;
        top: auto;
        right: auto;
        align-self: flex-start;
        margin-top: 5px;
    }
    
    .modal-content {
        padding: 0 20px 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .giveaway-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .refresh-streams-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .main-container {
        padding: 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title-left {
        font-size: 1.4rem;
    }
    
    .partner-btn {
        font-size: 0.95rem;
        padding: 12px 6px;
    }
    
    .giveaway-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .social-img {
        width: 18px;
        height: 18px;
    }
    
    .partner-modal {
        max-width: 350px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .code-value {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding: 10px;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .instructions-title {
        font-size: 1rem;
    }
    
    .instruction-step {
        font-size: 0.95rem;
    }
    
    .modal-giveaway {
        padding: 12px;
    }
    
    .giveaway-discord-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .refresh-streams-btn {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}