/* RSS Announcement Page Styles */

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

.rss-announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Oswald', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.rss-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.back-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.back-button:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-1px);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.rss-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rss-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.rss-header h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rss-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.rss-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
}

.rss-intro h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rss-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.rss-feeds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.feed-card {
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 300;
}

.feed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.feed-header h3 {
    margin: 0;
    color: #000;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feed-badge {
    background: #000;
    color: white;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feed-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 300;
}

.feed-url {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: white;
    border-radius: 2px;
    border: 1px solid #000;
}

.feed-url code {
    flex: 1;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
    color: #000;
    background: none;
    padding: 0;
    word-break: break-all;
}

.copy-btn, .try-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 2px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: white;
    color: #000;
    border: 1px solid #000;
}

.copy-btn:hover {
    background: #f8f9fa;
}

.try-btn {
    background: #000;
    color: white;
    width: 100%;
    border: 1px solid #000;
}

.try-btn:hover {
    background: #333;
}

.try-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.how-to-subscribe {
    margin-bottom: 60px;
}

.how-to-subscribe h2 {
    text-align: center;
    color: #000;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps {
    display: grid;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 2px;
    border: 1px solid #000;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    flex-shrink: 0;
    font-family: 'Oswald', sans-serif;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
}

.rss-demo {
    margin-top: 40px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: none;
}

.rss-demo h2 {
    margin: 0;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.demo-content {
    position: relative;
    max-height: 500px;
    overflow-y: auto;
}

.xml-content {
    background: #000;
    color: #fff;
    padding: 20px;
    margin: 0;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Footer styles are inherited from home.css */

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .rss-announcement-container {
        padding: 16px;
    }
    
    .rss-header h1 {
        font-size: 2.8rem;
    }
    
    .rss-intro {
        padding: 25px;
        margin-bottom: 50px;
    }
    
    .rss-feeds {
        gap: 16px;
        margin-bottom: 50px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .rss-announcement-container {
        padding: 15px;
    }
    
    .rss-header {
        margin-bottom: 30px;
    }
    
    .rss-header h1 {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .rss-subtitle {
        font-size: 1.1rem;
    }
    
    .rss-intro {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .rss-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .rss-intro p {
        font-size: 1rem;
    }
    
    .rss-feeds {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .feed-card {
        padding: 18px;
    }
    
    .feed-header h3 {
        font-size: 1.2rem;
    }
    
    .feed-url {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
    }
    
    .feed-url code {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .copy-btn, .try-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .how-to-subscribe {
        margin-bottom: 40px;
    }
    
    .how-to-subscribe h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 18px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .back-button {
        width: 40px;
        height: 40px;
    }
    
    .back-button svg {
        width: 18px;
        height: 18px;
    }
    
    .rss-demo h2 {
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .demo-content {
        max-height: 400px;
    }
    
    .xml-content {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .rss-announcement-container {
        padding: 12px;
    }
    
    .rss-header h1 {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .rss-subtitle {
        font-size: 1rem;
    }
    
    .rss-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .rss-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .rss-intro {
        padding: 16px;
        margin-bottom: 30px;
    }
    
    .rss-intro h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .rss-intro p {
        font-size: 0.95rem;
    }
    
    .rss-feeds {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .feed-card {
        padding: 15px;
    }
    
    .feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .feed-header h3 {
        font-size: 1.1rem;
    }
    
    .feed-badge {
        align-self: flex-start;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .feed-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .feed-url {
        padding: 8px;
        gap: 8px;
    }
    
    .feed-url code {
        font-size: 0.75rem;
    }
    
    .copy-btn, .try-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .how-to-subscribe {
        margin-bottom: 30px;
    }
    
    .how-to-subscribe h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .step {
        padding: 15px;
        gap: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-content h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .back-button {
        width: 36px;
        height: 36px;
    }
    
    .back-button svg {
        width: 16px;
        height: 16px;
    }
    
    .rss-demo h2 {
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .demo-content {
        max-height: 300px;
    }
    
    .xml-content {
        padding: 12px;
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .rss-announcement-container {
        padding: 10px;
    }
    
    .rss-header h1 {
        font-size: 1.8rem;
    }
    
    .rss-subtitle {
        font-size: 0.95rem;
    }
    
    .feed-card {
        padding: 12px;
    }
    
    .feed-header h3 {
        font-size: 1rem;
    }
    
    .feed-url code {
        font-size: 0.7rem;
    }
    
    .copy-btn, .try-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .step {
        padding: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}