* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
}
.home-main-section{
    width: 100%;
    margin: 0px auto;
}
.container {
    width: 100%;
    max-width: 900px;
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    margin: 30px auto;
}

.header {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.form-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    position: relative;
}

input {
    width: 100%;
    padding: 0.75rem 16px;
    border: 2px solid #bbf7d0;
    border-radius: 0.5rem;
    font-size: 16px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4ade80;
}

.amount-display {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #15803d;
}

.error-message {
    color: #ef4444;
    text-align: center;
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

button {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.primary-btn {
    background-color: #22c55e;
    color: white;
}

.primary-btn:hover {
    background-color: #16a34a;
}

.secondary-btn {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    text-decoration: none;
    color: black;
}

.secondary-btn:hover {
    background-color: #dcfce7;
}

.text-btn {
    color: #15803d;
}

.text-btn:hover {
    background-color: #f0fdf4;
}

.grid-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.icon {
    margin-right: 0.5rem;
}

.about-section {
    margin-top: 20px;
    text-align: left;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.text-about {
    align-items: center;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    color: #000000;
    background: #f1f1f1;
    padding: 11px;
    border-radius: 8px;
}

.tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tab {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: none;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    font-weight: bold;
}

.tab.active {
    background-color: #4CAF50;
    color: white;
}

.tab-content {
    display: none;
    padding: 10px 0;
}

.tab-content.active {
    display: block;
}

.header-about {
    background: #4CAF50;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
}

.header-about h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.header-about p {
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight {
    background: #FFC107;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.about-content {
    padding: 30px;
}

.about-content h2 {
    color: #4CAF50;
    margin: 20px 0 15px;
    font-size: 22px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
}

.prizes {
    margin: 25px 0;
}

.prize-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.prize-item:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.timing {
    background: #E8F5E9;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
}

.step {
    margin-bottom: 15px;
    display: flex;
}

.step-number {
    background: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.website-link {
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
}

.website-link:hover {
    text-decoration: underline;
}

.timing p {
    margin-top: 5px;
}

.note {
    color: #ff0000;
    font-weight: 700;
}
/*  winner list */
.content {
    padding: 16px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333333;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}


.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1rem;
    text-align: center;
}

.btn:hover {
    background: #388E3C;
}

/* winner list */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #DFE6E9;
}
.card-date {
    background: #E8F5E9;
    color: #4CAF50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.user-list-content{
    padding: 25px;
}
.user-list {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}
.winner-table{
    max-width: auto;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
   min-width: 900px;
}

th {
    background-color: #4CAF50;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.policy-content-main{
    width: 100%;
    margin: 0px auto;
}
.policy-header {
    background: #4CAF50;
    color: white;
    padding: 25px;
    text-align: center;
}

.policy-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.policy-content {
    padding: 30px;
}

h2 {
    color: #4CAF50;
    margin: 25px 0 15px;
    font-size: 22px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.note {
    background: #FFF9C4;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: 500;
}
 /* Footer Styles */
 .footer {
    background: #2E7D32;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

@media (max-width: 600px) {
    .header h1 {
        font-size: 24px;
    }

    .header p {
        font-size: 16px;
    }

    .about-content {
        padding: 20px;
    }
    .card-header{
        flex-direction: column;
        row-gap: 30px;
    }
}

@media (max-width: 768px) {
   
    
    .container {
        padding: 15px;
        margin: 0px auto;
    }
    
    th, td {
        padding: 8px 10px;
    }
    .policy-content {
        padding: 20px;
    }
    
    .policy-header h1 {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}