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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
}

/* Conteneur Full Page */
.instagram-container {
    width: 100%;
    height: 100vh;
    overflow: auto;
}

/* Widget Instagram - Full Page */
.instagram-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
    border: none !important;
    display: block;
}

/* Elfsight ou autre widget tiers */
.instagram-container > div[class*="elfsight"],
.instagram-container > div[class*="widget"] {
    width: 100% !important;
    min-height: 100vh !important;
}

/* Instructions temporaires */
.widget-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.widget-info h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #aaa;
}

.instructions {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    margin-top: 40px;
}

.instructions h2 {
    margin-bottom: 20px;
    color: #fff;
}

.instructions ol {
    list-style-position: inside;
    line-height: 2;
}

.instructions li {
    margin-bottom: 10px;
    color: #ccc;
}

.instructions a {
    color: #4a9eff;
    text-decoration: none;
}

.instructions a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .widget-info h1 {
        font-size: 2rem;
    }
    
    .instructions {
        padding: 20px;
    }
}