/* Styles for the hidden Photo Card generation container */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

#dc-hidden-photocard-wrapper {
    position: fixed;
    top: -9999px; /* Hide offscreen */
    left: -9999px;
    z-index: -100;
}

.dc-photocard {
    width: 1200px;
    height: 1200px;
    background: linear-gradient(135deg, #111111 0%, #3a0000 100%);
    font-family: 'Hind Siliguri', sans-serif;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.dc-top-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 48px;
    z-index: 10;
    box-sizing: border-box;
}

.dc-date-pill {
    background-color: black;
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 24px;
    border: 1px solid #4b5563;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.dc-logo-top {
    height: 128px;
}

.dc-image-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 48px;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.dc-image-border {
    width: 100%;
    height: 100%;
    border: 8px solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background-color: #1f2937;
    position: relative;
    overflow: hidden;
}

.dc-image-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.dc-bottom-banner {
    width: 100%;
    background: linear-gradient(to right, #5a0000, #111111);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    z-index: 10;
    min-height: 250px;
    box-sizing: border-box;
}

.dc-logo-circle-container {
    flex-shrink: 0;
    margin-right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 160px;
    height: 160px;
}

.dc-logo-dashed {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px dashed #ef4444;
}

.dc-logo-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #cc0000;
    border: 4px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 0;
}

.dc-logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-divider {
    width: 6px;
    height: 128px;
    background-color: white;
    border-radius: 9999px;
    margin-right: 32px;
}

.dc-headline {
    flex-grow: 1;
    color: white;
    font-weight: 700;
    font-size: 55px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}

.dc-footer {
    width: 100%;
    background-color: black;
    padding: 16px 48px;
    z-index: 10;
    border-top: 1px solid #7f1d1d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.dc-footer-website {
    color: #9ca3af;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.05em;
    width: 33%;
    text-align: left;
    margin: 0;
}

.dc-footer-text {
    color: white;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0.025em;
    width: 33%;
    text-align: center;
    margin: 0;
}

.dc-footer-spacer {
    width: 33%;
}

.dc-btn-hover:hover {
    background-color: #7a0000 !important;
}
